From 385da0a830d05084e145c237a1634aa5319e84d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez=20Ortega?= Date: Fri, 3 May 2024 01:09:33 +0200 Subject: [PATCH] =?UTF-8?q?falta=20a=C3=B1adir=20guardas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presupuestos/Presupuestocliente.php | 263 +- ci4/app/Language/es/Presupuestos.php | 1 + .../Services/PresupuestoClienteService.php | 52 + .../cliente/_disenioLibroItems.php | 12 +- .../form/presupuestos/cliente/disenioLibro.js | 44 +- xdebug.log | 12919 ++++++++++++++++ 6 files changed, 13153 insertions(+), 138 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 8a1d1c49..17b56c6d 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -635,130 +635,96 @@ class Presupuestocliente extends \App\Controllers\GoBaseResourceController 'cubierta' => "", 'sobrecubierta' => "", 'guardas' => "", + 'servicios' => "", 'serviciosDefecto' => "", ]; $coste_servicios = 0.0; $POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); + $tirada = $reqData['tirada'] ?? 0; $tamanio = $reqData['tamanio']; $tipo_impresion_id = $this->getTipoImpresion($reqData['tipo'], $reqData['tapa']); - $paginas_color = intval($reqData['paginasColor']) ?? 0; - $is_cosido = (new TipoPresupuestoModel())->get_isCosido($tipo_impresion_id); + $precio_u = []; - $datosPedido = (object)array( - 'paginas' => intval($reqData['paginas']) ?? 0, - 'tirada' => $tirada[0], - 'merma' => $tirada[0] > $POD ? $this->calcular_merma($tirada[0], $POD) : 0, - 'ancho' => intval($tamanio['ancho']) ?? 100000, - 'alto' => intval($tamanio['alto']) ?? 100000, - 'isCosido' => $is_cosido, - ); + for($t=0; $tget_isCosido($tipo_impresion_id); - $papel_generico = [ - 'id' => $reqData['papelInterior'] ?? 0, - 'nombre' => $reqData['papelInteriorNombre'] ?? "", - ]; - $gramaje = $reqData['gramajeInterior'] ?? 0; - $cliente_id = $reqData['clienteId'] ?? -1; - $excluirRotativa = $reqData['excluirRotativa'] ?? 0; + $datosPedido = (object)array( + 'paginas' => intval($reqData['paginas']) ?? 0, + 'tirada' => $tirada[$t], + 'merma' => $tirada[$t] > $POD ? $this->calcular_merma($tirada[$t], $POD) : 0, + 'ancho' => intval($tamanio['ancho']) ?? 100000, + 'alto' => intval($tamanio['alto']) ?? 100000, + 'isCosido' => $is_cosido, + ); - $input_data = array( - 'uso' => 'interior', - 'tipo_impresion_id' => $tipo_impresion_id, - 'datosPedido' => $datosPedido, - 'papel_generico' => $papel_generico, - 'gramaje' => $gramaje, - 'isColor' => intval($reqData['isColor']) ?? 0, - 'isHq' => intval($reqData['isHq']) ?? 0, - 'cliente_id' => $cliente_id, - 'paginas_color' => $paginas_color, - 'excluirRotativa' => $excluirRotativa, - ); + $papel_generico = [ + 'id' => $reqData['papelInterior'] ?? 0, + 'nombre' => $reqData['papelInteriorNombre'] ?? "", + ]; + $gramaje = $reqData['gramajeInterior'] ?? 0; + $cliente_id = $reqData['clienteId'] ?? -1; + $excluirRotativa = $reqData['excluirRotativa'] ?? 0; - $interior = PresupuestoClienteService::obtenerInterior($input_data); - - $costeInterior = 0.0; - foreach ($interior as $linea) { - if (count($linea) > 0) { - $costeInterior += floatval($linea['total_impresion']); - } - } - - if ($costeInterior <= 0) { - $error->interior = lang('Presupuestos.errores.noInterior'); - } - - // Si es POD hay que volver a calcular para incluir la merma correcta - if ($tirada[0] <= $POD) { - $num_formas = []; - foreach ($interior as $linea) { - if (count($linea) > 0) { - $formas_linea = $is_cosido ? intval($linea['num_formas']['value']) / 2 : intval($linea['num_formas']['value']); - array_push($num_formas, $formas_linea); - } - } - $input_data['datosPedido']['merma'] = $this->calcular_merma($tirada[0], $POD, $num_formas); + $input_data = array( + 'uso' => 'interior', + 'tipo_impresion_id' => $tipo_impresion_id, + 'datosPedido' => $datosPedido, + 'papel_generico' => $papel_generico, + 'gramaje' => $gramaje, + 'isColor' => intval($reqData['isColor']) ?? 0, + 'isHq' => intval($reqData['isHq']) ?? 0, + 'cliente_id' => $cliente_id, + 'paginas_color' => $paginas_color, + 'excluirRotativa' => $excluirRotativa, + ); $interior = PresupuestoClienteService::obtenerInterior($input_data); - } - $costeInterior = 0.0; - foreach ($interior as $linea) { - if (count($linea) > 0) { - $costeInterior += floatval($linea['total_impresion']); + $costeInterior = 0.0; + foreach ($interior as $linea) { + if (count($linea) > 0) { + $costeInterior += floatval($linea['total_impresion']); + } } - } - if ($costeInterior <= 0) - $error->interior = lang('Presupuestos.errores.noInterior'); - else - $error->interior = ""; - + if ($costeInterior <= 0) { + $error->interior = lang('Presupuestos.errores.noInterior'); + } - // Cubierta - $papel_generico = [ - 'id' => $reqData['papelCubierta'] ?? 0, - 'nombre' => $reqData['papelCubiertaNombre'] ?? "", - ]; - $input_data['papel_generico'] = $papel_generico; - $input_data['gramaje'] = $reqData['gramajeCubierta'] ?? 0; - $input_data['datosPedido']->paginas = intval($reqData['carasCubierta'] ?? 0); - $input_data['paginas_color'] = intval($reqData['carasCubierta'] ?? 0); - $input_data['datosPedido']->solapas_ancho = intval($reqData['solapasCubierta'] ?? 0); - $input_data['datosPedido']->solapas = $input_data['datosPedido']->solapas_ancho>0 ? 1 : 0; - $input_data['datosPedido']->lomo = $this->calcular_lomo($interior, 0); - $input_data['isColor'] = 1; - $input_data['isHq'] = 1; - $input_data['uso'] = 'cubierta'; + // Si es POD hay que volver a calcular para incluir la merma correcta + if ($tirada[$t] <= $POD) { + $num_formas = []; + foreach ($interior as $linea) { + if (count($linea) > 0) { + $formas_linea = $is_cosido ? intval($linea['num_formas']['value']) / 2 : intval($linea['num_formas']['value']); + array_push($num_formas, $formas_linea); + } + } + $input_data['datosPedido']->merma = $this->calcular_merma($tirada[$t], $POD, $num_formas); - $cubierta = PresupuestoClienteService::obtenerCubierta($input_data); - $coste_cubierta = 0.0; - if (count($cubierta) > 0) { - $coste_cubierta += floatval($cubierta['total_impresion']); - } - if($coste_cubierta <= 0) - $error->cubierta = lang('Presupuestos.errores.noCubierta'); - else - $error->cubierta = ""; + $interior = PresupuestoClienteService::obtenerInterior($input_data); + } - $tarifaAcabadoCubierta = intval($reqData['acabadoCubierta'] ?? 0); - $acabadoCubierta = []; - if($tarifaAcabadoCubierta > 0){ - $model = model('App\Models\Presupuestos\PresupuestoAcabadosModel'); - $acabadoCubierta = $model->getPrecioTarifa($tarifaAcabadoCubierta, $datosPedido->tirada, $POD); - } - if(count($acabadoCubierta) > 0){ - if($acabadoCubierta[0]->total <= 0 ) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); - $coste_servicios += floatval($acabadoCubierta[0]->total); - } + $costeInterior = 0.0; + foreach ($interior as $linea) { + if (count($linea) > 0) { + $costeInterior += floatval($linea['total_impresion']); + } + } - // Sobrecubierta - $sobreCubierta = $reqData["sobreCubierta"] ?? null; - if(!is_null($sobreCubierta)){ + if ($costeInterior <= 0) + $error->interior = lang('Presupuestos.errores.noInterior'); + else + $error->interior = ""; + + // Cubierta $papel_generico = [ 'id' => $reqData['papelCubierta'] ?? 0, 'nombre' => $reqData['papelCubiertaNombre'] ?? "", @@ -780,7 +746,7 @@ class Presupuestocliente extends \App\Controllers\GoBaseResourceController $coste_cubierta += floatval($cubierta['total_impresion']); } if($coste_cubierta <= 0) - $error->cubierta = lang('Presupuestos.errores.noCubierta'); + $error->cubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); else $error->cubierta = ""; @@ -795,38 +761,87 @@ class Presupuestocliente extends \App\Controllers\GoBaseResourceController $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); $coste_servicios += floatval($acabadoCubierta[0]->total); } - } - - // Servicios defecto - $servDefecto = PresupuestoCLienteService::getServiciosEncuadernacionDefault([ - 'tipo_impresion_id' => $tipo_impresion_id, - 'tirada' => $datosPedido->tirada, - 'paginas' => intval($reqData['paginas']) ?? 0, - 'ancho' => $datosPedido->ancho, - 'alto' => $datosPedido->alto, - 'POD' => $POD, - 'solapas' => intval($reqData['solapasCubierta'] ?? 0), - ]); - $costeServiciosDefecto = 0.0; - foreach ($servDefecto as $servicio) { - if($servicio->total <= 0 ) - $error->serviciosDefecto = lang('Presupuestos.errores.errorPresupuesto'); - - $costeServiciosDefecto += floatval($servicio->total); - } - $precio_u = round(($costeInterior + $coste_cubierta + $costeServiciosDefecto + $coste_servicios)/$tirada[0], 4); + // Sobrecubierta + $coste_sobrecubierta = 0.0; + $linea_sobrecubierta = []; + $sobreCubierta = $reqData["sobrecubierta"] ?? null; + if(!is_null($sobreCubierta)){ + + $papel_generico = [ + 'id' => $sobreCubierta['papel'] ?? 0, + 'nombre' => $sobreCubierta['papel_nombre'] ?? "", + ]; + $input_data['papel_generico'] = $papel_generico; + $input_data['gramaje'] = $sobreCubierta['gramaje'] ?? 0; + $input_data['datosPedido']->paginas = 4; + $input_data['paginas_color'] = 4; + $input_data['datosPedido']->solapas_ancho = intval($sobreCubierta['solapas'] ?? 0); + $input_data['datosPedido']->solapas = $input_data['datosPedido']->solapas_ancho>0 ? 1 : 0; + $input_data['datosPedido']->lomo = $this->calcular_lomo([$cubierta], $input_data['datosPedido']->lomo); + $input_data['isColor'] = 1; + $input_data['isHq'] = 1; + $input_data['uso'] = 'sobrecubierta'; + + $linea_sobrecubierta = PresupuestoClienteService::obtenerSobrecubierta($input_data); + + if (count($linea_sobrecubierta) > 0) { + $coste_sobrecubierta += floatval($linea_sobrecubierta['total_impresion']); + } + if($coste_sobrecubierta <= 0) + $error->sobrecubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); + else + $error->sobrecubierta = ""; + + $tarifaAcabadoSobrecubierta = intval($sobreCubierta->acabado ?? 0); + $acabadoSobrecubierta = []; + if($tarifaAcabadoSobrecubierta > 0){ + $model = model('App\Models\Presupuestos\PresupuestoAcabadosModel'); + $acabadoSobrecubierta = $model->getPrecioTarifa($tarifaAcabadoSobrecubierta, $datosPedido->tirada, $POD); + } + if(count($acabadoSobrecubierta) > 0){ + if($acabadoSobrecubierta[0]->total <= 0 ) + $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + $coste_servicios += floatval($acabadoSobrecubierta[0]->total); + } + } + + // Servicios defecto + $servDefecto = PresupuestoCLienteService::getServiciosEncuadernacionDefault([ + 'tipo_impresion_id' => $tipo_impresion_id, + 'tirada' => $datosPedido->tirada, + 'paginas' => intval($reqData['paginas']) ?? 0, + 'ancho' => $datosPedido->ancho, + 'alto' => $datosPedido->alto, + 'POD' => $POD, + 'solapas' => intval($reqData['solapasCubierta'] ?? 0), + ]); + $costeServiciosDefecto = 0.0; + foreach ($servDefecto as $servicio) { + if($servicio->total <= 0 ) + $error->serviciosDefecto = lang('Presupuestos.errores.errorPresupuesto'); + + $costeServiciosDefecto += floatval($servicio->total); + } + + array_push($precio_u, round(($costeInterior + $coste_cubierta + $coste_sobrecubierta + $costeServiciosDefecto + $coste_servicios)/$tirada[$t], 4)); + foreach($error as $err){ + if($err != "") + break; + } + } return [ 'errors' => $error, - 'total_lp' => $costeInterior+$coste_cubierta, + 'total_lp' => $costeInterior+$coste_cubierta+$coste_sobrecubierta, 'acabadoCubierta' => $acabadoCubierta, 'total_servicios_defecto' => $costeServiciosDefecto, 'tiradas' => $tirada, - 'precio_u' => [$precio_u], + 'precio_u' => $precio_u, 'interior' => $interior, 'cubierta' => $cubierta, + 'sobrecubierta' => $linea_sobrecubierta, 'serviciosDefecto' => $servDefecto, ]; } diff --git a/ci4/app/Language/es/Presupuestos.php b/ci4/app/Language/es/Presupuestos.php index 9ffe4e2f..e5ee4dc3 100755 --- a/ci4/app/Language/es/Presupuestos.php +++ b/ci4/app/Language/es/Presupuestos.php @@ -299,6 +299,7 @@ return [ 'tirada_alt_duplicada' => 'Ya existe una tirada alternativa para ese valor', 'tirada_alt_tipo' => 'No se puede calcular una tirada alternativa POD para una presupuesto no POD o viceversa', 'noInterior' => 'No se hay resultados para el interior', + 'noCubiertaSobrecubierta' => 'No se hay resultados para cubierta/sobrecubierta', 'errorPresupuesto' => 'Se ha producido un error al calcular el presupuesto. Póngase en contacto con el administrador', ], ]; diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php index 2b11b975..f0b6d1ac 100644 --- a/ci4/app/Services/PresupuestoClienteService.php +++ b/ci4/app/Services/PresupuestoClienteService.php @@ -94,6 +94,58 @@ class PresupuestoClienteService extends BaseService return $lineas_cubierta; } + public static function obtenerSobrecubierta($data) + { + + $uso = $data['uso']; + $tipo_impresion_id = $data['tipo_impresion_id']; + $datosPedido = $data['datosPedido']; + $papel_generico = $data['papel_generico']; + $gramaje = $data['gramaje']; + $isColor = $data['isColor']; + $isHq = $data['isHq']; + $cliente_id = $data['cliente_id']; + $paginas_color = $data['paginas_color']; + + $lineas_sobrecubierta = []; + + for ($i = 0; $i < 2; $i++) { + + $lineas = PresupuestoService::obtenerComparadorPlana([ + 'uso' => $uso, + 'tipo_impresion_id' => $tipo_impresion_id, + 'datosPedido' => $datosPedido, + 'papel_generico' => $papel_generico, + 'gramaje' => $gramaje, + 'isColor' => $isColor, + 'isHq' => $isHq, + 'cliente_id' => $cliente_id, + 'a_favor_fibra' => $i + ]); + + if (count($lineas) > 0) { + $lineas_sobrecubierta = array_merge($lineas_sobrecubierta, $lineas); + } + } + if (count($lineas_sobrecubierta) > 0) { + + usort( + $lineas_sobrecubierta, + function ($a, $b) { + $result = 0; + if (floatval($a['fields']['total_impresion']) > floatval($b['fields']['total_impresion'])) + $result = 1; + else if (floatval($a['fields']['total_impresion']) < floatval($b['fields']['total_impresion'])) + $result = -1; + return $result; + } + ); + $lineas_sobrecubierta = $lineas_sobrecubierta[0]['fields']; + $lineas_sobrecubierta['tipo_linea'] = 'lp_sobrecubierta'; + } + return $lineas_sobrecubierta; + } + /** * Obtiene las lineas de plana en el presupuesto de cliente diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php index acdde666..8b38c13b 100644 --- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php +++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php @@ -351,6 +351,10 @@ + +
@@ -365,7 +369,7 @@
- papelSobrecubierta) && is_array($datosPresupuesto->papelSobrecubierta) && !empty($datosPresupuesto->papelSobrecubierta)) : foreach ($datosPresupuesto->papelSobrecubierta as $k => $v) : ?>
diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/disenioLibro.js b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/disenioLibro.js index 7716f4d4..4efb2095 100644 --- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/disenioLibro.js +++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/disenioLibro.js @@ -134,7 +134,13 @@ $('#enableSobrecubierta').on('change', function () { if ($(this).is(":checked")) { $('.enable-sobrecubierta').show(); } else { + $('#gramajeSobrecubierta').val('').trigger('change'); + $('#paperSobrecubierta').val('').trigger('change'); + $('#acabadosSobrecubierta').val('').trigger('change'); + $('#solapasSobrecubierta').prop('checked', false).trigger('change'); + $('#tamanioSolapasSobrecubierta').val(); $('.enable-sobrecubierta').hide(); + } }); @@ -270,7 +276,7 @@ $('#papelCubierta').on('change', function () { isHq = true; if ($('#papelCubierta option:selected').val() != undefined) { - var uso = 'colorhq'; + var uso = 'cubierta'; datos = { tirada: $('#tirada').val(), @@ -308,7 +314,7 @@ $('#papelSobrecubierta').on('change', function () { isHq = true; if ($('#papelSobrecubierta option:selected').val() != undefined) { - var uso = 'colorhq'; + var uso = 'sobrecubierta'; datos = { tirada: $('#tirada').val(), @@ -562,6 +568,13 @@ function numCarasGuardas(numCaras) { $('.calcular-presupuesto').on('change', function () { + + // se obtiene el id del elemento que ha disparado el evento + if($(this).hasClass('input-sobrecubierta')){ + if($('#papelSobrecubierta option:selected').val() == '' || $('#gramajeSobrecubierta option:selected').val() == ''){ + return; + } + } calcularPresupuesto(); }); @@ -606,14 +619,17 @@ async function calcularPresupuesto() { // Si hay sobrecubierta if ($('.enable-sobrecubierta').is(':visible')) { - datos.sobrecubierta = { - papel: $('#papelSobrecubierta option:selected').val(), - papel_nombre: $('#papelSobrecubierta option:selected').text().trim(), - gramaje: $('#gramajeSobrecubierta option:selected').text(), - acabado: $('#acabadosSobrecubierta').val() - } - if ($('#solapasSobrecubierta').is(':checked')) { - datos.sobrecubierta.solapas = $('#anchoSolapasSobrecubierta').val() + if($('#papelSobrecubierta option:selected').val()>0 && $('#gramajeSobrecubierta option:selected').val()>0){ + + datos.sobrecubierta = { + papel: $('#papelSobrecubierta option:selected').val(), + papel_nombre: $('#papelSobrecubierta option:selected').text().trim(), + gramaje: $('#gramajeSobrecubierta option:selected').text(), + acabado: $('#acabadosSobrecubierta').val() + } + if ($('#solapasSobrecubierta').is(':checked')) { + datos.sobrecubierta.solapas = $('#anchoSolapasSobrecubierta').val() + } } } @@ -649,6 +665,14 @@ async function calcularPresupuesto() { else $('#errorCubierta').hide(); + if(response.errors.sobrecubierta.length > 0){ + $('#errorSobrecubierta').show(); + error = true; + } + else + $('#errorSobrecubierta').hide(); + + if(response.errors.servicios.length > 0 || response.errors.serviciosDefecto.length > 0){ error = true; } diff --git a/xdebug.log b/xdebug.log index 86ef8c1a..cc60fda6 100644 --- a/xdebug.log +++ b/xdebug.log @@ -348228,3 +348228,12922 @@ [30] Log closed at 2024-05-02 18:21:42.243791 +[352] Log opened at 2024-05-02 21:30:10.801503 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] Log closed at 2024-05-02 21:30:14.108511 + +[352] Log opened at 2024-05-02 21:30:14.201715 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] Log opened at 2024-05-02 21:30:14.353005 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[26] Log opened at 2024-05-02 21:30:14.363282 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] Log opened at 2024-05-02 21:30:14.374197 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-05-02 21:30:14.376641 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] Log closed at 2024-05-02 21:30:15.153918 + +[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-05-02 21:30:15.622422 + +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] Log closed at 2024-05-02 21:30:16.531324 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-05-02 21:30:17.170078 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-02 21:30:17.664150 + +[353] Log opened at 2024-05-02 21:30:17.714722 +[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' +[353] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[353] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[353] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[353] Log closed at 2024-05-02 21:30:18.968263 + +[353] Log opened at 2024-05-02 21:30:20.673160 +[353] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.353' +[353] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[353] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[353] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[353] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[353] Log closed at 2024-05-02 21:30:22.294831 + +[23] Log opened at 2024-05-02 21:30:32.268785 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-02 21:30:34.082411 + +[23] Log opened at 2024-05-02 21:30:38.368318 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-02 21:30:39.857276 + +[23] Log opened at 2024-05-02 21:30:40.946104 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-02 21:30:42.479954 + +[351] Log opened at 2024-05-02 21:30:56.060848 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[349] Log opened at 2024-05-02 21:30:56.060836 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] Log closed at 2024-05-02 21:30:57.149864 + +[349] Log closed at 2024-05-02 21:30:57.150311 + +[351] Log opened at 2024-05-02 21:30:57.203970 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] Log opened at 2024-05-02 21:30:57.332097 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] Log closed at 2024-05-02 21:30:58.849410 + +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] Log closed at 2024-05-02 21:30:59.055636 + +[354] Log opened at 2024-05-02 21:32:27.092322 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] Log closed at 2024-05-02 21:32:30.596562 + +[354] Log opened at 2024-05-02 21:32:30.840574 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] Log opened at 2024-05-02 21:32:31.039321 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[25] Log opened at 2024-05-02 21:32:31.040944 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] Log opened at 2024-05-02 21:32:31.066601 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[26] Log opened at 2024-05-02 21:32:31.067617 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] Log closed at 2024-05-02 21:32:31.834107 + +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] Log closed at 2024-05-02 21:32:32.867411 + +[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-05-02 21:32:33.391224 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-02 21:32:33.897800 + +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] Log closed at 2024-05-02 21:32:34.419958 + +[24] Log opened at 2024-05-02 21:32:34.497600 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-05-02 21:32:35.975884 + +[23] Log opened at 2024-05-02 21:33:29.239842 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-02 21:33:32.567819 + +[351] Log opened at 2024-05-02 21:33:32.686947 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[23] Log opened at 2024-05-02 21:33:32.688512 +[349] Log opened at 2024-05-02 21:33:32.688530 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[355] Log opened at 2024-05-02 21:33:32.688655 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[352] Log opened at 2024-05-02 21:33:32.690440 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] Log closed at 2024-05-02 21:33:33.526544 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-02 21:33:34.104627 + +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] Log closed at 2024-05-02 21:33:34.532039 + +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] Log closed at 2024-05-02 21:33:35.059041 + +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] Log closed at 2024-05-02 21:33:35.543747 + +[354] Log opened at 2024-05-02 21:33:35.596730 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] Log closed at 2024-05-02 21:33:36.976955 + +[354] Log opened at 2024-05-02 21:33:39.569195 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] Log closed at 2024-05-02 21:33:41.330632 + +[25] Log opened at 2024-05-02 21:33:50.371748 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-02 21:33:51.880584 + +[25] Log opened at 2024-05-02 21:33:56.528996 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-02 21:33:57.927497 + +[25] Log opened at 2024-05-02 21:33:59.684699 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-02 21:34:01.255340 + +[339] Log opened at 2024-05-02 21:34:08.599969 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] Log closed at 2024-05-02 21:34:10.137396 + +[24] Log opened at 2024-05-02 21:38:26.845986 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[356] Log opened at 2024-05-02 21:38:26.847533 +[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] Log closed at 2024-05-02 21:38:28.265258 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-05-02 21:38:28.799237 + +[356] Log opened at 2024-05-02 21:38:28.829647 +[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] Log closed at 2024-05-02 21:38:30.377628 + +[351] Log opened at 2024-05-02 21:39:42.917999 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] Log closed at 2024-05-02 21:39:46.082239 + +[355] Log opened at 2024-05-02 21:39:46.181351 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[351] Log opened at 2024-05-02 21:39:46.182488 +[352] Log opened at 2024-05-02 21:39:46.182418 +[23] Log opened at 2024-05-02 21:39:46.182624 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[349] Log opened at 2024-05-02 21:39:46.184905 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] Log closed at 2024-05-02 21:39:47.038544 + +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] Log closed at 2024-05-02 21:39:47.815697 + +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] Log closed at 2024-05-02 21:39:48.293022 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-02 21:39:48.794479 + +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] Log closed at 2024-05-02 21:39:49.288188 + +[355] Log opened at 2024-05-02 21:39:49.335644 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] Log closed at 2024-05-02 21:39:50.673331 + +[355] Log opened at 2024-05-02 21:39:50.890351 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] Log closed at 2024-05-02 21:39:52.568908 + +[339] Log opened at 2024-05-02 21:40:01.266065 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] Log closed at 2024-05-02 21:40:03.151489 + +[339] Log opened at 2024-05-02 21:40:06.412891 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] Log closed at 2024-05-02 21:40:07.811262 + +[339] Log opened at 2024-05-02 21:40:09.498329 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] Log closed at 2024-05-02 21:40:10.956650 + +[24] Log opened at 2024-05-02 21:40:32.477141 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] Log opened at 2024-05-02 21:40:32.480261 +[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] Log closed at 2024-05-02 21:40:33.908046 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-05-02 21:40:34.448117 + +[356] Log opened at 2024-05-02 21:40:34.481506 +[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] Log closed at 2024-05-02 21:40:35.999880 + +[349] Log opened at 2024-05-02 21:40:39.781745 +[357] Log opened at 2024-05-02 21:40:39.781761 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[357] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] Log closed at 2024-05-02 21:40:40.896122 + +[349] Log opened at 2024-05-02 21:40:40.915772 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[357] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[357] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[357] Log closed at 2024-05-02 21:40:41.217742 + +[357] Log opened at 2024-05-02 21:40:41.554683 +[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357' +[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[357] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] Log closed at 2024-05-02 21:40:42.737759 + +[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[357] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[357] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[357] Log closed at 2024-05-02 21:40:43.260137 + +[354] Log opened at 2024-05-02 21:45:02.700978 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[354] [Step Debug] -> + +[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] [Step Debug] -> + +[354] [Step Debug] <- run -i 7 +[354] [Step Debug] -> + +[354] [Step Debug] -> + +[354] [Step Debug] <- stack_get -i 8 +[354] [Step Debug] -> + +[354] [Step Debug] <- context_names -i 9 -d 0 +[354] [Step Debug] -> + +[354] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[354] [Step Debug] -> + +[354] [Step Debug] <- context_names -i 11 -d 0 +[354] [Step Debug] -> + +[354] [Step Debug] <- property_get -i 12 -d 0 -c 0 -n "$sobreCubierta" +[354] [Step Debug] -> + +[354] [Step Debug] <- run -i 13 +[354] [Step Debug] -> + +[354] [Step Debug] <- stop -i 14 +[354] [Step Debug] -> + +[354] Log closed at 2024-05-02 21:45:23.417826 + +[351] Log opened at 2024-05-02 21:45:48.097101 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[351] [Step Debug] -> + +[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[351] [Step Debug] -> + +[351] [Step Debug] <- run -i 7 +[351] [Step Debug] -> + +[351] [Step Debug] -> + +[351] [Step Debug] <- stop -i 8 +[351] [Step Debug] -> + +[351] Log closed at 2024-05-02 21:45:50.446436 + +[355] Log opened at 2024-05-02 21:45:50.569937 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[351] Log opened at 2024-05-02 21:45:50.570704 +[23] Log opened at 2024-05-02 21:45:50.570686 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[352] Log opened at 2024-05-02 21:45:50.571029 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] Log opened at 2024-05-02 21:45:50.573800 +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[23] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] -> + +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[339] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[351] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[351] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[339] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[351] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[351] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[339] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[351] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[351] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[351] [Step Debug] -> + +[352] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[339] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[352] [Step Debug] -> + +[351] [Step Debug] -> + +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[351] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[352] [Step Debug] -> + +[339] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[339] [Step Debug] <- run -i 7 +[352] [Step Debug] <- run -i 7 +[23] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 21:45:50.896297 + +[351] [Step Debug] -> + +[351] [Step Debug] <- stop -i 8 +[351] [Step Debug] -> + +[351] Log closed at 2024-05-02 21:45:51.827095 + +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 21:45:52.165756 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 21:45:52.452891 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 21:45:52.746315 + +[355] Log opened at 2024-05-02 21:45:52.817432 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 21:45:53.640580 + +[356] Log opened at 2024-05-02 21:45:59.005526 +[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[356] [Step Debug] -> + +[356] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[356] [Step Debug] -> + +[356] [Step Debug] <- run -i 7 +[356] [Step Debug] -> + +[356] [Step Debug] <- stop -i 8 +[356] [Step Debug] -> + +[356] Log closed at 2024-05-02 21:46:00.212101 + +[349] Log opened at 2024-05-02 21:46:14.078833 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:46:15.332188 + +[349] Log opened at 2024-05-02 21:46:19.519889 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:46:20.299231 + +[349] Log opened at 2024-05-02 21:46:21.673489 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] -> + +[349] [Step Debug] <- stack_get -i 8 +[349] [Step Debug] -> + +[349] [Step Debug] <- context_names -i 9 -d 0 +[349] [Step Debug] -> + +[349] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 11 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 12 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:46:36.145038 + +[354] Log opened at 2024-05-02 21:46:47.380734 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[358] Log opened at 2024-05-02 21:46:47.382079 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[354] [Step Debug] -> + +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[354] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[354] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[354] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[354] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] [Step Debug] -> + +[354] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[354] [Step Debug] -> + +[354] [Step Debug] -> + +[354] [Step Debug] <- stop -i 8 +[354] [Step Debug] -> + +[354] Log closed at 2024-05-02 21:46:48.141489 + +[354] Log opened at 2024-05-02 21:46:48.166808 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[354] [Step Debug] -> + +[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] [Step Debug] -> + +[354] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- stack_get -i 8 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 9 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 11 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 12 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 21:46:59.172949 + +[354] [Step Debug] -> + +[354] [Step Debug] -> + +[354] [Step Debug] <- stack_get -i 8 +[354] [Step Debug] -> + +[354] [Step Debug] <- context_names -i 9 -d 0 +[354] [Step Debug] -> + +[354] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[354] [Step Debug] -> + +[354] [Step Debug] <- run -i 11 +[354] [Step Debug] -> + +[354] [Step Debug] <- stop -i 12 +[354] [Step Debug] -> + +[354] Log closed at 2024-05-02 21:47:00.102498 + +[24] Log opened at 2024-05-02 21:47:13.455045 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 8 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 9 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 11 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 12 -d 0 -c 0 -n "$sobreCubierta" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 13 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 14 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 21:48:44.244461 + +[351] Log opened at 2024-05-02 21:50:26.761350 +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[351] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[351] [Step Debug] -> + +[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[351] [Step Debug] -> + +[351] [Step Debug] <- run -i 7 +[351] [Step Debug] -> + +[351] [Step Debug] -> + +[351] [Step Debug] <- stop -i 8 +[351] [Step Debug] -> + +[351] Log closed at 2024-05-02 21:50:29.461285 + +[339] Log opened at 2024-05-02 21:50:29.539140 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[339] [Step Debug] -> + +[339] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 21:50:30.303290 + +[356] Log opened at 2024-05-02 21:50:30.484696 +[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356' +[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[356] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[356] [Step Debug] -> + +[356] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[356] [Step Debug] -> + +[356] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[356] [Step Debug] -> + +[356] [Step Debug] <- run -i 7 +[23] Log opened at 2024-05-02 21:50:30.626795 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[356] [Step Debug] -> + +[356] [Step Debug] <- stop -i 8 +[356] [Step Debug] -> + +[356] Log closed at 2024-05-02 21:50:31.327714 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 21:50:31.635363 + +[23] Log opened at 2024-05-02 21:50:33.819463 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 21:50:37.606676 + +[23] Log opened at 2024-05-02 21:50:37.696690 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-05-02 21:50:37.701598 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[359] Log opened at 2024-05-02 21:50:37.702227 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[24] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[359] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[359] [Step Debug] -> + +[23] [Step Debug] -> + +[354] Log opened at 2024-05-02 21:50:37.741162 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] <- run -i 7 +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[359] [Step Debug] -> + +[349] Log opened at 2024-05-02 21:50:37.749553 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[358] Log opened at 2024-05-02 21:50:37.761404 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[24] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[349] [Step Debug] -> + +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] <- run -i 7 +[359] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[354] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[354] [Step Debug] -> + +[359] [Step Debug] <- run -i 7 +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[354] [Step Debug] -> + +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[354] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[349] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[354] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[354] [Step Debug] -> + +[349] [Step Debug] -> + +[354] [Step Debug] <- run -i 7 +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 21:50:38.007657 + +[23] Log opened at 2024-05-02 21:50:38.021876 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 21:50:38.478742 + +[24] Log opened at 2024-05-02 21:50:38.489059 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 21:50:38.979519 + +[359] Log opened at 2024-05-02 21:50:38.989666 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:50:39.221179 + +[349] Log opened at 2024-05-02 21:50:39.230242 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[354] [Step Debug] -> + +[354] [Step Debug] <- stop -i 8 +[354] [Step Debug] -> + +[354] Log closed at 2024-05-02 21:50:39.450437 + +[354] Log opened at 2024-05-02 21:50:39.459115 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[354] [Step Debug] -> + +[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] [Step Debug] -> + +[354] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 21:50:39.615699 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 21:50:39.918942 + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 21:50:40.105712 + +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 21:50:40.337714 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:50:40.532632 + +[354] [Step Debug] -> + +[354] [Step Debug] <- stop -i 8 +[354] [Step Debug] -> + +[354] Log closed at 2024-05-02 21:50:40.727073 + +[23] Log opened at 2024-05-02 21:50:40.782902 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[349] Log opened at 2024-05-02 21:50:40.832364 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] Log opened at 2024-05-02 21:50:40.843244 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[349] [Step Debug] -> + +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[349] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] Log opened at 2024-05-02 21:50:40.858401 +[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354' +[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 7 +[354] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[354] [Step Debug] -> + +[354] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[354] [Step Debug] -> + +[24] Log opened at 2024-05-02 21:50:40.874110 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[354] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[354] [Step Debug] -> + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[354] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[354] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[354] [Step Debug] <- run -i 7 +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[358] Log opened at 2024-05-02 21:50:41.052634 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:50:41.774455 + +[349] Log opened at 2024-05-02 21:50:41.784502 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 21:50:41.848606 + +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 21:50:42.068376 + +[354] [Step Debug] -> + +[354] [Step Debug] <- stop -i 8 +[354] [Step Debug] -> + +[354] Log closed at 2024-05-02 21:50:42.341449 + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 21:50:42.665614 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 21:50:43.021292 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 21:50:43.318694 + +[352] Log opened at 2024-05-02 22:02:55.323358 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:02:58.158794 + +[339] Log opened at 2024-05-02 22:02:58.282129 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[352] Log opened at 2024-05-02 22:02:58.283127 +[355] Log opened at 2024-05-02 22:02:58.283174 +[351] Log opened at 2024-05-02 22:02:58.283456 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[351] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.351' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[351] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-05-02 22:02:58.286998 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[351] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[352] [Step Debug] -> + +[351] [Step Debug] -> + +[339] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[351] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[351] [Step Debug] -> + +[352] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[339] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[351] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] -> + +[355] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[351] [Step Debug] -> + +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[339] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[351] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[339] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[351] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[351] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[355] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[351] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 7 +[351] [Step Debug] -> + +[355] [Step Debug] -> + +[23] [Step Debug] -> + +[339] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[355] [Step Debug] <- run -i 7 +[351] [Step Debug] <- run -i 7 +[339] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 22:02:58.698745 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:02:59.576609 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:02:59.846422 + +[351] [Step Debug] -> + +[351] [Step Debug] <- stop -i 8 +[351] [Step Debug] -> + +[351] Log closed at 2024-05-02 22:03:00.128368 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:03:00.439691 + +[359] Log opened at 2024-05-02 22:03:00.492070 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 7 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:03:01.425614 + +[24] Log opened at 2024-05-02 22:03:36.975050 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 22:03:38.209110 + +[358] Log opened at 2024-05-02 22:03:55.406491 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:03:56.768725 + +[349] Log opened at 2024-05-02 22:07:44.948875 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:07:47.567638 + +[339] Log opened at 2024-05-02 22:07:47.705507 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[352] Log opened at 2024-05-02 22:07:47.706834 +[23] Log opened at 2024-05-02 22:07:47.706896 +[349] Log opened at 2024-05-02 22:07:47.706820 +[360] Log opened at 2024-05-02 22:07:47.707012 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[349] [Step Debug] -> + +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] -> + +[23] [Step Debug] -> + +[360] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[349] [Step Debug] -> + +[339] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] -> + +[352] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[339] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[23] [Step Debug] -> + +[360] [Step Debug] -> + +[352] [Step Debug] -> + +[360] [Step Debug] <- run -i 7 +[23] [Step Debug] <- run -i 7 +[339] [Step Debug] <- run -i 7 +[352] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 22:07:47.993992 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:07:48.806147 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:07:49.098861 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 8 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:07:49.381464 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:07:49.701395 + +[339] Log opened at 2024-05-02 22:07:49.767083 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[339] [Step Debug] -> + +[339] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 22:07:50.583440 + +[359] Log opened at 2024-05-02 22:07:57.616194 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 7 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:07:58.814922 + +[24] Log opened at 2024-05-02 22:08:11.449692 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 22:08:12.653446 + +[24] Log opened at 2024-05-02 22:08:16.152231 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 22:08:16.967550 + +[24] Log opened at 2024-05-02 22:08:18.294517 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 761 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 8 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 9 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 11 -d 240008 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 13 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-02 22:08:28.851448 + +[361] Log opened at 2024-05-02 22:08:41.717763 +[358] Log opened at 2024-05-02 22:08:41.717829 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[358] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[358] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[361] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[361] [Step Debug] <- run -i 6 +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 7 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:08:42.567919 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:08:42.931970 + +[361] Log opened at 2024-05-02 22:08:42.959315 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 6 +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 7 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:08:43.958679 + +[352] Log opened at 2024-05-02 22:08:49.809850 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:08:50.749915 + +[355] Log opened at 2024-05-02 22:09:42.176809 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] -> + +[355] [Step Debug] <- stack_get -i 8 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_names -i 9 -d 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- step_into -i 11 +[355] [Step Debug] -> + +[355] [Step Debug] <- stack_get -i 12 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_names -i 13 -d 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- step_over -i 15 +[355] [Step Debug] -> + +[355] [Step Debug] <- stack_get -i 16 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_names -i 17 -d 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- step_over -i 19 +[355] [Step Debug] -> + +[355] [Step Debug] <- stack_get -i 20 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_names -i 21 -d 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 23 +[355] [Step Debug] -> + +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:10:50.550769 + +[355] Log opened at 2024-05-02 22:10:53.683797 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:10:56.190798 + +[339] Log opened at 2024-05-02 22:10:56.337568 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[360] Log opened at 2024-05-02 22:10:56.338694 +[355] Log opened at 2024-05-02 22:10:56.338755 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[349] Log opened at 2024-05-02 22:10:56.340076 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[23] Log opened at 2024-05-02 22:10:56.340928 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[355] [Step Debug] -> + +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[360] [Step Debug] -> + +[339] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[360] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[339] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[23] [Step Debug] -> + +[339] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[355] [Step Debug] -> + +[23] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[23] [Step Debug] -> + +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 7 +[23] [Step Debug] <- run -i 7 +[349] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 22:10:57.004710 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:10:57.519274 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 8 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:10:57.805099 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:10:58.092518 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:10:58.398043 + +[339] Log opened at 2024-05-02 22:10:58.442810 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[339] [Step Debug] -> + +[339] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 22:10:59.236378 + +[339] Log opened at 2024-05-02 22:11:03.793441 +[339] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.339' +[339] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[339] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[339] [Step Debug] -> + +[339] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[339] [Step Debug] -> + +[339] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[339] [Step Debug] -> + +[339] [Step Debug] <- run -i 7 +[339] [Step Debug] -> + +[339] [Step Debug] <- stop -i 8 +[339] [Step Debug] -> + +[339] Log closed at 2024-05-02 22:11:04.983944 + +[358] Log opened at 2024-05-02 22:11:17.110189 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:11:18.297091 + +[361] Log opened at 2024-05-02 22:11:23.353569 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:11:24.558977 + +[361] Log opened at 2024-05-02 22:11:25.724195 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:11:26.689928 + +[361] Log opened at 2024-05-02 22:11:30.114058 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] Log opened at 2024-05-02 22:11:30.118891 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[361] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:11:30.803958 + +[361] Log opened at 2024-05-02 22:11:30.823582 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:11:31.271901 + +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:11:31.731498 + +[352] Log opened at 2024-05-02 22:11:33.979664 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] -> + +[352] [Step Debug] <- stack_get -i 8 +[352] [Step Debug] -> + +[352] [Step Debug] <- context_names -i 9 -d 0 +[352] [Step Debug] -> + +[352] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[352] [Step Debug] -> + +[352] [Step Debug] <- step_over -i 11 +[352] [Step Debug] -> + +[352] [Step Debug] <- stack_get -i 12 +[352] [Step Debug] -> + +[352] [Step Debug] <- context_names -i 13 -d 0 +[352] [Step Debug] -> + +[352] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 15 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 16 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:11:42.832837 + +[362] Log opened at 2024-05-02 22:12:42.391812 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 7 +[362] [Step Debug] -> + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 8 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:12:45.135376 + +[362] Log opened at 2024-05-02 22:12:45.246765 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] Log opened at 2024-05-02 22:12:45.251455 +[355] Log opened at 2024-05-02 22:12:45.251550 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[349] Log opened at 2024-05-02 22:12:45.251776 +[359] Log opened at 2024-05-02 22:12:45.252284 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] -> + +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[362] [Step Debug] -> + +[355] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[360] [Step Debug] -> + +[359] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[355] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[360] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[360] [Step Debug] -> + +[362] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[359] [Step Debug] -> + +[362] [Step Debug] <- run -i 7 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[349] [Step Debug] <- run -i 7 +[360] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[359] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[359] [Step Debug] <- run -i 7 +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 8 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:12:45.519797 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:12:46.087654 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 8 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:12:46.278283 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:12:46.531834 + +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:12:47.113279 + +[23] Log opened at 2024-05-02 22:12:47.170821 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:12:47.891880 + +[358] Log opened at 2024-05-02 22:13:12.443724 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:13:13.349120 + +[361] Log opened at 2024-05-02 22:15:33.196842 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:15:35.923901 + +[361] Log opened at 2024-05-02 22:15:36.120027 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] Log opened at 2024-05-02 22:15:36.125301 +[362] Log opened at 2024-05-02 22:15:36.125417 +[352] Log opened at 2024-05-02 22:15:36.125280 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[363] Log opened at 2024-05-02 22:15:36.125432 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363' +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[363] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[363] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[352] [Step Debug] -> + +[362] [Step Debug] -> + +[363] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[363] [Step Debug] -> + +[349] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[363] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[363] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[361] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[363] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[363] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[363] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[362] [Step Debug] -> + +[363] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[361] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[352] [Step Debug] -> + +[363] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[363] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[362] [Step Debug] -> + +[352] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[363] [Step Debug] -> + +[362] [Step Debug] -> + +[349] [Step Debug] -> + +[352] [Step Debug] -> + +[362] [Step Debug] <- run -i 7 +[363] [Step Debug] <- run -i 7 +[349] [Step Debug] <- run -i 7 +[352] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:15:36.382103 + +[363] [Step Debug] -> + +[363] [Step Debug] <- stop -i 8 +[363] [Step Debug] -> + +[363] Log closed at 2024-05-02 22:15:36.949553 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:15:37.247049 + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 8 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:15:37.528800 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:15:38.163853 + +[349] Log opened at 2024-05-02 22:15:38.240341 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:15:39.121390 + +[355] Log opened at 2024-05-02 22:20:06.297084 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:20:09.077686 + +[358] Log opened at 2024-05-02 22:20:09.250759 +[355] Log opened at 2024-05-02 22:20:09.252074 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[359] Log opened at 2024-05-02 22:20:09.252180 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[23] Log opened at 2024-05-02 22:20:09.252941 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[360] Log opened at 2024-05-02 22:20:09.254364 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[355] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[358] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[358] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[359] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[360] [Step Debug] -> + +[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[23] [Step Debug] -> + +[359] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[23] [Step Debug] <- run -i 7 +[359] [Step Debug] <- run -i 7 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:20:09.814194 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:20:10.306264 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:20:10.954676 + +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 8 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:20:11.254490 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 8 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:20:11.570646 + +[23] Log opened at 2024-05-02 22:20:11.630869 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:20:12.448136 + +[362] Log opened at 2024-05-02 22:20:37.114736 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 7 +[362] [Step Debug] -> + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 8 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:20:38.338552 + +[362] Log opened at 2024-05-02 22:20:41.542592 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 7 +[362] [Step Debug] -> + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 8 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:20:42.368292 + +[352] Log opened at 2024-05-02 22:21:52.274486 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:21:53.388816 + +[349] Log opened at 2024-05-02 22:22:03.470979 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 7 +[349] [Step Debug] -> + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 8 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:22:04.785474 + +[364] Log opened at 2024-05-02 22:22:22.619540 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 7 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 8 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:22:24.007781 + +[361] Log opened at 2024-05-02 22:22:29.376066 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:22:30.610248 + +[361] Log opened at 2024-05-02 22:22:35.567512 +[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361' +[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[361] [Step Debug] -> + +[361] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[361] [Step Debug] -> + +[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[361] [Step Debug] -> + +[361] [Step Debug] <- run -i 7 +[361] [Step Debug] -> + +[361] [Step Debug] -> + +[361] [Step Debug] <- stop -i 8 +[361] [Step Debug] -> + +[361] Log closed at 2024-05-02 22:22:36.473957 + +[358] Log opened at 2024-05-02 22:22:56.666624 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:22:57.968822 + +[355] Log opened at 2024-05-02 22:23:06.384303 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:23:07.786410 + +[359] Log opened at 2024-05-02 22:23:20.798927 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 773 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 7 +[359] [Step Debug] -> + +[359] [Step Debug] -> + +[359] [Step Debug] <- stack_get -i 8 +[359] [Step Debug] -> + +[359] [Step Debug] <- context_names -i 9 -d 0 +[359] [Step Debug] -> + +[359] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[359] [Step Debug] -> + +[359] [Step Debug] <- context_names -i 11 -d 0 +[359] [Step Debug] -> + +[359] [Step Debug] <- property_get -i 12 -d 0 -c 0 -n "$cubierta" +[359] [Step Debug] -> + +[359] [Step Debug] <- step_over -i 13 +[359] [Step Debug] -> + +[359] [Step Debug] <- stack_get -i 14 +[359] [Step Debug] -> + +[359] [Step Debug] <- context_names -i 15 -d 0 +[359] [Step Debug] -> + +[359] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[359] [Step Debug] -> + +[359] [Step Debug] <- breakpoint_remove -i 17 -d 3590008 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 18 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 19 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:23:29.304743 + +[360] Log opened at 2024-05-02 22:28:34.140129 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:28:36.500719 + +[23] Log opened at 2024-05-02 22:28:36.858768 +[352] Log opened at 2024-05-02 22:28:36.858800 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] Log opened at 2024-05-02 22:28:36.863189 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] Log opened at 2024-05-02 22:28:36.867697 +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[352] [Step Debug] -> + +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[352] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[360] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[352] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[360] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[360] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[349] [Step Debug] -> + +[362] Log opened at 2024-05-02 22:28:36.893967 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[349] [Step Debug] <- run -i 6 +[360] [Step Debug] <- run -i 6 +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 6 +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:28:37.269426 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:28:37.722039 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:28:38.330173 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:28:38.597794 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:28:38.941215 + +[362] Log opened at 2024-05-02 22:28:39.011395 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 6 +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:28:39.794520 + +[358] Log opened at 2024-05-02 22:29:16.871856 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:29:19.416450 + +[358] Log opened at 2024-05-02 22:29:19.566984 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] Log opened at 2024-05-02 22:29:19.571567 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[359] Log opened at 2024-05-02 22:29:19.571565 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[365] Log opened at 2024-05-02 22:29:19.572231 +[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365' +[355] Log opened at 2024-05-02 22:29:19.572109 +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[360] [Step Debug] -> + +[359] [Step Debug] -> + +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[365] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[358] [Step Debug] -> + +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[365] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[365] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[365] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[365] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] <- run -i 6 +[359] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[365] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[365] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[365] [Step Debug] <- run -i 6 +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[360] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:29:19.837678 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:29:20.249475 + +[365] [Step Debug] -> + +[365] [Step Debug] <- stop -i 7 +[365] [Step Debug] -> + +[365] Log closed at 2024-05-02 22:29:20.522162 + +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 7 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:29:20.776315 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:29:21.395174 + +[360] Log opened at 2024-05-02 22:29:21.460458 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:29:22.291942 + +[360] Log opened at 2024-05-02 22:29:25.285526 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:29:26.367630 + +[352] Log opened at 2024-05-02 22:29:35.622784 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:29:36.523763 + +[352] Log opened at 2024-05-02 22:29:40.073324 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:29:40.898790 + +[352] Log opened at 2024-05-02 22:29:42.348476 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:29:43.242121 + +[349] Log opened at 2024-05-02 22:30:29.223693 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:30:31.663699 + +[349] Log opened at 2024-05-02 22:30:31.803542 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[365] Log opened at 2024-05-02 22:30:31.807420 +[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365' +[362] Log opened at 2024-05-02 22:30:31.808638 +[358] Log opened at 2024-05-02 22:30:31.808735 +[364] Log opened at 2024-05-02 22:30:31.808671 +[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] -> + +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[358] [Step Debug] -> + +[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[365] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[364] [Step Debug] -> + +[358] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[365] [Step Debug] -> + +[362] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[358] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[365] [Step Debug] -> + +[362] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[365] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[364] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[365] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[358] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[365] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] <- run -i 6 +[364] [Step Debug] -> + +[365] [Step Debug] <- run -i 6 +[362] [Step Debug] <- run -i 6 +[364] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:30:32.032694 + +[365] [Step Debug] -> + +[365] [Step Debug] <- stop -i 7 +[365] [Step Debug] -> + +[365] Log closed at 2024-05-02 22:30:32.566777 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:30:32.789737 + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:30:33.504596 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:30:33.773999 + +[365] Log opened at 2024-05-02 22:30:33.830808 +[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365' +[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[365] [Step Debug] -> + +[365] [Step Debug] <- run -i 6 +[365] [Step Debug] -> + +[365] [Step Debug] <- stop -i 7 +[365] [Step Debug] -> + +[365] Log closed at 2024-05-02 22:30:34.713920 + +[365] Log opened at 2024-05-02 22:30:37.894364 +[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365' +[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[365] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[365] [Step Debug] -> + +[365] [Step Debug] <- run -i 6 +[365] [Step Debug] -> + +[365] [Step Debug] <- stop -i 7 +[365] [Step Debug] -> + +[365] Log closed at 2024-05-02 22:30:38.984195 + +[355] Log opened at 2024-05-02 22:30:48.530077 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:30:49.368762 + +[355] Log opened at 2024-05-02 22:30:52.739502 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:30:53.593997 + +[355] Log opened at 2024-05-02 22:30:54.608211 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:30:55.553908 + +[360] Log opened at 2024-05-02 22:31:05.186241 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] Log opened at 2024-05-02 22:31:05.188287 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:31:05.863147 + +[360] Log opened at 2024-05-02 22:31:05.885676 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:31:06.225828 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:31:06.753432 + +[352] Log opened at 2024-05-02 22:31:10.309707 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:31:11.227434 + +[23] Log opened at 2024-05-02 22:31:49.562679 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:31:50.891245 + +[349] Log opened at 2024-05-02 22:32:26.338222 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:32:27.630478 + +[359] Log opened at 2024-05-02 22:32:35.577268 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 6 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 7 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:32:36.907072 + +[358] Log opened at 2024-05-02 22:32:49.673388 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:32:50.969396 + +[362] Log opened at 2024-05-02 22:34:11.526991 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 6 +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:34:14.365123 + +[360] Log opened at 2024-05-02 22:34:14.527059 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[364] Log opened at 2024-05-02 22:34:14.528658 +[362] Log opened at 2024-05-02 22:34:14.528830 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[365] Log opened at 2024-05-02 22:34:14.528790 +[355] Log opened at 2024-05-02 22:34:14.528912 +[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365' +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[355] [Step Debug] -> + +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[365] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[355] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[365] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[365] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[365] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[365] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[365] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[364] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[365] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[362] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[365] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[365] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[362] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[365] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[365] [Step Debug] -> + +[364] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[362] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[365] [Step Debug] <- run -i 6 +[355] [Step Debug] <- run -i 6 +[364] [Step Debug] <- run -i 6 +[362] [Step Debug] <- run -i 6 +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:34:14.796665 + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:34:15.516285 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:34:15.870957 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:34:16.165950 + +[365] [Step Debug] -> + +[365] [Step Debug] <- stop -i 7 +[365] [Step Debug] -> + +[365] Log closed at 2024-05-02 22:34:16.458985 + +[355] Log opened at 2024-05-02 22:34:16.510817 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:34:17.266284 + +[355] Log opened at 2024-05-02 22:34:21.664145 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:34:22.749484 + +[352] Log opened at 2024-05-02 22:34:33.135684 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:34:34.336888 + +[352] Log opened at 2024-05-02 22:34:38.895607 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:34:39.761951 + +[352] Log opened at 2024-05-02 22:34:41.240652 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:34:42.205193 + +[349] Log opened at 2024-05-02 22:35:27.041130 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:35:29.887888 + +[349] Log opened at 2024-05-02 22:35:30.028443 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[358] Log opened at 2024-05-02 22:35:30.045797 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] Log opened at 2024-05-02 22:35:30.050601 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[362] Log opened at 2024-05-02 22:35:30.054809 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] Log opened at 2024-05-02 22:35:30.057021 +[358] [Step Debug] -> + +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[362] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] <- run -i 6 +[362] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[362] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[362] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[362] [Step Debug] <- run -i 6 +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:35:30.299564 + +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:35:30.827100 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:35:31.059763 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:35:31.209246 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:35:31.792326 + +[359] Log opened at 2024-05-02 22:35:31.845165 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 6 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 7 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:35:32.869107 + +[359] Log opened at 2024-05-02 22:35:37.201234 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 6 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 7 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:35:38.372130 + +[355] Log opened at 2024-05-02 22:35:48.056345 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:35:48.762797 + +[355] Log opened at 2024-05-02 22:35:52.459365 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:35:53.148609 + +[355] Log opened at 2024-05-02 22:35:54.311612 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:35:55.278231 + +[352] Log opened at 2024-05-02 22:36:04.793910 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-05-02 22:36:04.797003 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:36:05.455720 + +[352] Log opened at 2024-05-02 22:36:05.477328 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:36:05.840981 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:36:06.353169 + +[23] Log opened at 2024-05-02 22:36:09.873367 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:36:10.771767 + +[366] Log opened at 2024-05-02 22:36:22.609593 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:23.808218 + +[366] Log opened at 2024-05-02 22:36:25.952866 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:26.837366 + +[366] Log opened at 2024-05-02 22:36:27.308943 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:28.160582 + +[366] Log opened at 2024-05-02 22:36:28.788277 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:29.535062 + +[366] Log opened at 2024-05-02 22:36:32.504098 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[349] Log opened at 2024-05-02 22:36:32.707330 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[362] Log opened at 2024-05-02 22:36:33.066700 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:33.440446 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:36:33.760097 + +[366] Log opened at 2024-05-02 22:36:34.017666 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:36:34.274452 + +[349] Log opened at 2024-05-02 22:36:34.798894 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:34.934233 + +[362] Log opened at 2024-05-02 22:36:35.390481 +[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362' +[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[362] [Step Debug] -> + +[362] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[362] [Step Debug] -> + +[362] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:36:35.685139 + +[366] Log opened at 2024-05-02 22:36:36.145494 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[362] [Step Debug] -> + +[362] [Step Debug] <- stop -i 7 +[362] [Step Debug] -> + +[362] Log closed at 2024-05-02 22:36:36.260516 + +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:36:36.961055 + +[360] Log opened at 2024-05-02 22:36:44.796793 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:36:45.916999 + +[360] Log opened at 2024-05-02 22:36:49.960273 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:36:50.917260 + +[360] Log opened at 2024-05-02 22:36:53.508901 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:36:54.507477 + +[360] Log opened at 2024-05-02 22:36:54.961490 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:36:55.857017 + +[360] Log opened at 2024-05-02 22:36:56.326761 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:36:57.244888 + +[360] Log opened at 2024-05-02 22:36:57.770759 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:36:58.628057 + +[358] Log opened at 2024-05-02 22:37:53.529972 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:37:56.088715 + +[359] Log opened at 2024-05-02 22:37:56.184377 +[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359' +[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[359] [Step Debug] -> + +[359] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[359] [Step Debug] -> + +[359] [Step Debug] <- run -i 6 +[359] [Step Debug] -> + +[359] [Step Debug] <- stop -i 7 +[359] [Step Debug] -> + +[359] Log closed at 2024-05-02 22:37:56.873706 + +[23] Log opened at 2024-05-02 22:37:57.058682 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[349] Log opened at 2024-05-02 22:37:57.203952 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:37:57.898871 + +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:37:58.294867 + +[360] Log opened at 2024-05-02 22:38:05.447868 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:38:09.148169 + +[360] Log opened at 2024-05-02 22:38:09.245743 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] Log opened at 2024-05-02 22:38:09.250811 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[352] Log opened at 2024-05-02 22:38:09.251194 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[355] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[352] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[352] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] <- run -i 6 +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[355] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[355] [Step Debug] <- run -i 6 +[358] Log opened at 2024-05-02 22:38:09.300353 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] Log opened at 2024-05-02 22:38:09.303251 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] Log opened at 2024-05-02 22:38:09.306565 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[367] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[367] [Step Debug] -> + +[364] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[367] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[364] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[364] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 6 +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:38:09.519645 + +[360] Log opened at 2024-05-02 22:38:09.535969 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:38:09.874372 + +[358] Log opened at 2024-05-02 22:38:09.882982 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:38:10.367007 + +[352] Log opened at 2024-05-02 22:38:10.374840 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:38:10.585752 + +[355] Log opened at 2024-05-02 22:38:10.594247 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:38:10.802370 + +[364] Log opened at 2024-05-02 22:38:10.811596 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:38:11.031787 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:38:11.217808 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:38:11.431472 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:38:11.618051 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:38:11.800471 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:38:11.981809 + +[367] Log opened at 2024-05-02 22:38:12.041121 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[352] Log opened at 2024-05-02 22:38:12.087876 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] Log opened at 2024-05-02 22:38:12.090862 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[364] Log opened at 2024-05-02 22:38:12.104788 +[358] [Step Debug] <- run -i 6 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] Log opened at 2024-05-02 22:38:12.120192 +[364] [Step Debug] -> + +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] <- run -i 6 +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[360] Log opened at 2024-05-02 22:38:12.288254 +[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360' +[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[360] [Step Debug] -> + +[360] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[360] [Step Debug] -> + +[360] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:38:12.882603 + +[358] Log opened at 2024-05-02 22:38:12.892397 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:38:12.970178 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:38:13.173422 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:38:13.470753 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:38:13.747624 + +[360] [Step Debug] -> + +[360] [Step Debug] <- stop -i 7 +[360] [Step Debug] -> + +[360] Log closed at 2024-05-02 22:38:14.022151 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:38:14.287911 + +[23] Log opened at 2024-05-02 22:38:23.043960 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:38:24.242704 + +[349] Log opened at 2024-05-02 22:38:32.753999 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:38:33.672497 + +[349] Log opened at 2024-05-02 22:38:35.182145 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:38:36.007128 + +[366] Log opened at 2024-05-02 22:42:39.422534 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:42:42.174469 + +[366] Log opened at 2024-05-02 22:42:42.325749 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[364] Log opened at 2024-05-02 22:42:42.352512 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[355] Log opened at 2024-05-02 22:42:42.354886 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] Log opened at 2024-05-02 22:42:42.356464 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] Log opened at 2024-05-02 22:42:42.357543 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[355] [Step Debug] -> + +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[355] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[368] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[355] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[364] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[355] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[352] [Step Debug] -> + +[364] [Step Debug] <- run -i 6 +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[368] [Step Debug] <- run -i 6 +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:42:42.622740 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:42:43.209626 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:42:43.478236 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:42:44.106645 + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 7 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:42:44.395910 + +[352] Log opened at 2024-05-02 22:42:44.466660 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:42:45.290297 + +[352] Log opened at 2024-05-02 22:42:47.621286 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:42:48.684036 + +[358] Log opened at 2024-05-02 22:42:57.408621 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:42:58.581888 + +[358] Log opened at 2024-05-02 22:43:02.563600 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:03.422643 + +[358] Log opened at 2024-05-02 22:43:05.397355 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:06.287615 + +[23] Log opened at 2024-05-02 22:43:12.734939 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] Log opened at 2024-05-02 22:43:12.737379 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[349] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:43:13.566091 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:13.891728 + +[349] Log opened at 2024-05-02 22:43:13.918697 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:43:14.769041 + +[349] Log opened at 2024-05-02 22:43:15.933057 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:43:16.833745 + +[349] Log opened at 2024-05-02 22:43:19.050299 +[349] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.349' +[349] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[349] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[349] [Step Debug] -> + +[349] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[349] [Step Debug] -> + +[349] [Step Debug] <- run -i 6 +[349] [Step Debug] -> + +[349] [Step Debug] <- stop -i 7 +[349] [Step Debug] -> + +[349] Log closed at 2024-05-02 22:43:19.922372 + +[369] Log opened at 2024-05-02 22:43:34.151704 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[367] Log opened at 2024-05-02 22:43:35.206166 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:35.237519 + +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:36.373923 + +[367] Log opened at 2024-05-02 22:43:38.256235 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] Log opened at 2024-05-02 22:43:38.258918 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[366] Log opened at 2024-05-02 22:43:38.260183 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[367] [Step Debug] -> + +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[367] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[367] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[367] [Step Debug] -> + +[369] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[369] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] Log opened at 2024-05-02 22:43:38.274472 +[366] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[366] [Step Debug] <- run -i 6 +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[364] Log opened at 2024-05-02 22:43:38.308203 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[368] Log opened at 2024-05-02 22:43:38.325720 +[352] Log opened at 2024-05-02 22:43:38.325449 +[358] Log opened at 2024-05-02 22:43:38.325485 +[23] Log opened at 2024-05-02 22:43:38.325647 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 6 +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[368] [Step Debug] -> + +[23] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[23] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] -> + +[23] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[23] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[358] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[368] [Step Debug] -> + +[358] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[368] [Step Debug] <- run -i 6 +[358] [Step Debug] <- run -i 6 +[23] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:39.088378 + +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:39.366046 + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:39.662236 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 7 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:43:39.972139 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:40.285580 + +[358] Log opened at 2024-05-02 22:43:40.323990 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[366] Log opened at 2024-05-02 22:43:40.355961 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 7 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:43:40.583835 + +[369] Log opened at 2024-05-02 22:43:40.594229 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:40.866361 + +[23] Log opened at 2024-05-02 22:43:40.876096 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:43:41.129800 + +[367] Log opened at 2024-05-02 22:43:41.137913 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:41.380476 + +[352] Log opened at 2024-05-02 22:43:41.389988 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:41.589619 + +[358] Log opened at 2024-05-02 22:43:41.600660 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:41.788930 + +[366] Log opened at 2024-05-02 22:43:41.797990 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:41.979106 + +[369] Log opened at 2024-05-02 22:43:41.987144 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:42.212160 + +[23] Log opened at 2024-05-02 22:43:42.222360 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:42.443141 + +[367] Log opened at 2024-05-02 22:43:42.452242 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:42.626121 + +[352] Log opened at 2024-05-02 22:43:42.634838 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:42.831468 + +[358] Log opened at 2024-05-02 22:43:42.839774 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:43.033981 + +[366] Log opened at 2024-05-02 22:43:43.041985 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:43.243391 + +[369] Log opened at 2024-05-02 22:43:43.253952 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:43.447107 + +[23] Log opened at 2024-05-02 22:43:43.455170 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:43.663676 + +[367] Log opened at 2024-05-02 22:43:43.676509 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:43.908665 + +[352] Log opened at 2024-05-02 22:43:43.918003 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:44.122195 + +[358] Log opened at 2024-05-02 22:43:44.133603 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:44.323214 + +[366] Log opened at 2024-05-02 22:43:44.332464 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:44.533690 + +[369] Log opened at 2024-05-02 22:43:44.542694 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:44.719808 + +[23] Log opened at 2024-05-02 22:43:44.731370 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:44.918466 + +[367] Log opened at 2024-05-02 22:43:44.927411 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:45.107522 + +[352] Log opened at 2024-05-02 22:43:45.116059 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:45.307578 + +[358] Log opened at 2024-05-02 22:43:45.317609 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[368] Log opened at 2024-05-02 22:43:45.392424 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:45.601694 + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:45.841157 + +[366] Log opened at 2024-05-02 22:43:45.849797 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:46.059973 + +[23] Log opened at 2024-05-02 22:43:46.076226 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:46.270049 + +[369] Log opened at 2024-05-02 22:43:46.281113 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[367] Log opened at 2024-05-02 22:43:46.459326 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:46.520076 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:46.747276 + +[358] Log opened at 2024-05-02 22:43:46.756842 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 7 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:43:46.947972 + +[352] Log opened at 2024-05-02 22:43:46.957060 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:47.133336 + +[366] Log opened at 2024-05-02 22:43:47.141369 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:47.330054 + +[23] Log opened at 2024-05-02 22:43:47.337879 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:47.509828 + +[369] Log opened at 2024-05-02 22:43:47.518284 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:47.732589 + +[367] Log opened at 2024-05-02 22:43:47.741567 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:47.936708 + +[358] Log opened at 2024-05-02 22:43:47.946537 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:48.145018 + +[352] Log opened at 2024-05-02 22:43:48.154004 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:48.329647 + +[366] Log opened at 2024-05-02 22:43:48.339549 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:48.516732 + +[23] Log opened at 2024-05-02 22:43:48.525017 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:48.701124 + +[369] Log opened at 2024-05-02 22:43:48.710073 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:48.910186 + +[367] Log opened at 2024-05-02 22:43:48.918419 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:49.117565 + +[358] Log opened at 2024-05-02 22:43:49.126853 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:49.305500 + +[352] Log opened at 2024-05-02 22:43:49.314279 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:49.508234 + +[366] Log opened at 2024-05-02 22:43:49.516478 +[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366' +[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[366] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[366] [Step Debug] -> + +[366] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[366] [Step Debug] -> + +[366] [Step Debug] <- run -i 6 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:49.707143 + +[23] Log opened at 2024-05-02 22:43:49.717243 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:49.908080 + +[369] Log opened at 2024-05-02 22:43:49.916846 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:43:50.121186 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:43:50.314197 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:43:50.548286 + +[366] [Step Debug] -> + +[366] [Step Debug] <- stop -i 7 +[366] [Step Debug] -> + +[366] Log closed at 2024-05-02 22:43:50.762325 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 7 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:43:51.004604 + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:43:51.231738 + +[376] Log opened at 2024-05-02 22:44:28.858074 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 7 +[376] [Step Debug] -> + +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 8 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 9 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 10 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 11 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 12 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 13 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 15 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 16 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 17 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 19 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 20 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 21 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 23 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 24 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 25 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 27 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 28 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 29 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 31 +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 32 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 22:45:14.506838 + +[364] Log opened at 2024-05-02 22:45:50.401296 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 9 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 10 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 11 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 12 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- property_get -i 13 -d 0 -c 0 -n "$sobreCubierta->papel_nombre" +[364] [Step Debug] -> + +[364] [Step Debug] <- step_over -i 14 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 15 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 16 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 18 -- c29icmVjdWJpZXJ0YVsnZ3JhbWFqZSdd +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 19 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 21 -- JHNvYnJlY3ViaWVydGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 22 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 24 -- JHNvYnJlY3ViaWVydGEtPmdyYW1hamU= +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 25 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 27 -- JHNvYnJlQ3ViaWVydGEtPmdyYW1hamU= +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 28 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 30 -- JHNvYnJlQ3ViaWVydGE= +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 31 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 33 -- JHNvYnJlQ3ViaWVydGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 34 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 36 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 37 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 38 -- JHNvYnJlQ3ViaWVydGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 39 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 41 +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 42 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:47:44.832696 + +[364] Log opened at 2024-05-02 22:47:46.361263 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 9 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:47:48.779008 + +[364] Log opened at 2024-05-02 22:47:48.927158 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 8 +[355] Log opened at 2024-05-02 22:47:49.130567 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[368] Log opened at 2024-05-02 22:47:49.142142 +[352] Log opened at 2024-05-02 22:47:49.142532 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] Log opened at 2024-05-02 22:47:49.149676 +[352] [Step Debug] -> + +[368] [Step Debug] -> + +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[352] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[368] [Step Debug] -> + +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[355] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[352] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[368] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[367] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[355] [Step Debug] -> + +[368] [Step Debug] -> + +[355] [Step Debug] <- run -i 8 +[352] [Step Debug] -> + +[368] [Step Debug] <- run -i 8 +[352] [Step Debug] <- run -i 8 +[367] [Step Debug] -> + +[367] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 9 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:47:49.428039 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 9 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:47:50.101010 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 9 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:47:50.680575 + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 9 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:47:50.954969 + +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 9 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:47:51.227340 + +[358] Log opened at 2024-05-02 22:47:51.266268 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 8 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 9 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:47:52.403899 + +[23] Log opened at 2024-05-02 22:47:57.946521 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 9 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:47:59.133785 + +[369] Log opened at 2024-05-02 22:48:05.601325 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[369] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 8 +[369] [Step Debug] -> + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 9 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:48:06.720325 + +[376] Log opened at 2024-05-02 22:48:15.338680 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 8 +[376] [Step Debug] -> + +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 9 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 22:48:16.497778 + +[377] Log opened at 2024-05-02 22:48:23.208490 +[377] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.377' +[377] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[377] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[377] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- run -i 8 +[377] [Step Debug] -> + +[377] [Step Debug] -> + +[377] [Step Debug] <- stop -i 9 +[377] [Step Debug] -> + +[377] Log closed at 2024-05-02 22:48:24.396973 + +[377] Log opened at 2024-05-02 22:48:25.407164 +[377] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.377' +[377] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[377] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[377] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- run -i 8 +[377] [Step Debug] -> + +[377] [Step Debug] -> + +[377] [Step Debug] -> + +[377] [Step Debug] <- stop -i 9 +[377] [Step Debug] -> + +[377] Log closed at 2024-05-02 22:48:26.361706 + +[377] Log opened at 2024-05-02 22:48:30.798974 +[377] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.377' +[377] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] Log opened at 2024-05-02 22:48:30.801317 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[377] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[377] [Step Debug] -> + +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[377] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[377] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[377] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[377] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[377] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[377] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 8 +[377] [Step Debug] -> + +[377] [Step Debug] -> + +[377] [Step Debug] <- stop -i 9 +[377] [Step Debug] -> + +[377] Log closed at 2024-05-02 22:48:31.507197 + +[377] Log opened at 2024-05-02 22:48:31.530590 +[377] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.377' +[377] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[377] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[377] [Step Debug] -> + +[377] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[377] [Step Debug] -> + +[377] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[377] [Step Debug] -> + +[377] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 9 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:48:31.928306 + +[377] [Step Debug] -> + +[377] [Step Debug] -> + +[377] [Step Debug] -> + +[377] [Step Debug] <- stop -i 9 +[377] [Step Debug] -> + +[377] Log closed at 2024-05-02 22:48:32.421375 + +[364] Log opened at 2024-05-02 22:48:33.850335 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 770 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 9 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 10 -- JHNvYnJlQ3ViaWVydGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 11 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 12 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 13 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- property_get -i 14 -d 0 -c 0 -n "->solapas_ancho" +[364] [Step Debug] -> + +[364] [Step Debug] <- step_over -i 15 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 16 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 17 -- JHNvYnJlQ3ViaWVydGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 18 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 20 -- JGlucHV0X2RhdGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 21 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_remove -i 23 -d 3640010 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 24 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 25 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 26 -- JGlucHV0X2RhdGFbJ2dyYW1hamUnXQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 27 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_remove -i 29 -d 3640011 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 30 +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 31 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:49:04.006918 + +[352] Log opened at 2024-05-02 22:49:54.353129 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:49:55.628765 + +[355] Log opened at 2024-05-02 22:50:18.989363 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 782 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[355] [Step Debug] -> + +[355] [Step Debug] -> + +[355] [Step Debug] <- stack_get -i 8 +[355] [Step Debug] -> + +[355] [Step Debug] <- eval -i 9 -- JGlucHV0X2RhdGFbJ2dyYW1hamUnXQ== +[355] [Step Debug] -> + +[355] [Step Debug] <- context_names -i 10 -d 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- context_get -i 11 -d 0 -c 0 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 12 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 13 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:50:41.674709 + +[368] Log opened at 2024-05-02 22:54:52.142765 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 7 +[368] [Step Debug] -> + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 8 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:54:54.858574 + +[368] Log opened at 2024-05-02 22:54:55.024289 +[367] Log opened at 2024-05-02 22:54:55.024228 +[358] Log opened at 2024-05-02 22:54:55.024305 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[23] Log opened at 2024-05-02 22:54:55.024318 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[369] Log opened at 2024-05-02 22:54:55.024943 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[367] [Step Debug] -> + +[358] [Step Debug] -> + +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[368] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[369] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[358] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[368] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[23] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[358] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[369] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[367] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 7 +[367] [Step Debug] -> + +[23] [Step Debug] -> + +[369] [Step Debug] -> + +[358] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[367] [Step Debug] <- run -i 7 +[369] [Step Debug] <- run -i 7 +[358] [Step Debug] <- run -i 7 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 8 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:54:55.570521 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:54:55.839753 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:54:56.163513 + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 8 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:54:56.574355 + +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 8 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:54:56.858479 + +[376] Log opened at 2024-05-02 22:54:57.029067 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 7 +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 8 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 22:54:58.076148 + +[376] Log opened at 2024-05-02 22:55:00.981160 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 7 +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 8 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 22:55:02.110531 + +[364] Log opened at 2024-05-02 22:55:12.194662 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 7 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 8 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:55:13.347098 + +[364] Log opened at 2024-05-02 22:55:16.954267 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 7 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 8 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:55:17.688072 + +[364] Log opened at 2024-05-02 22:55:19.038532 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 7 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 8 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:55:19.853719 + +[352] Log opened at 2024-05-02 22:55:44.694518 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:55:47.491684 + +[352] Log opened at 2024-05-02 22:55:47.650064 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] Log opened at 2024-05-02 22:55:47.654954 +[23] Log opened at 2024-05-02 22:55:47.655244 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[355] Log opened at 2024-05-02 22:55:47.655097 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[378] Log opened at 2024-05-02 22:55:47.655682 +[378] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.378' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[378] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[352] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[378] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[378] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[378] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[378] [Step Debug] -> + +[369] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[352] [Step Debug] -> + +[378] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[378] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[378] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[378] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[378] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[378] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[23] [Step Debug] -> + +[355] [Step Debug] -> + +[352] [Step Debug] -> + +[378] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[378] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[352] [Step Debug] <- run -i 7 +[378] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[369] [Step Debug] -> + +[23] [Step Debug] -> + +[369] [Step Debug] <- run -i 7 +[23] [Step Debug] <- run -i 7 +[378] [Step Debug] -> + +[355] [Step Debug] -> + +[378] [Step Debug] <- run -i 7 +[355] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:55:47.905774 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:55:48.337676 + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 8 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:55:48.605937 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:55:49.203209 + +[378] [Step Debug] -> + +[378] [Step Debug] <- stop -i 8 +[378] [Step Debug] -> + +[378] Log closed at 2024-05-02 22:55:49.517656 + +[369] Log opened at 2024-05-02 22:55:49.584335 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 7 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 8 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:55:50.476348 + +[368] Log opened at 2024-05-02 22:56:03.963045 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 7 +[368] [Step Debug] -> + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 8 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:56:04.824716 + +[368] Log opened at 2024-05-02 22:56:08.390083 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 7 +[368] [Step Debug] -> + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 8 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:56:09.259097 + +[367] Log opened at 2024-05-02 22:56:17.366915 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 7 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 8 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:56:18.175646 + +[367] Log opened at 2024-05-02 22:56:21.128424 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 7 +[367] [Step Debug] -> + +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 8 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:56:22.100371 + +[376] Log opened at 2024-05-02 22:58:49.964718 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 7 +[376] [Step Debug] -> + +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 8 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 22:58:52.399575 + +[352] Log opened at 2024-05-02 22:58:52.579519 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[376] Log opened at 2024-05-02 22:58:52.580977 +[358] Log opened at 2024-05-02 22:58:52.580991 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[364] Log opened at 2024-05-02 22:58:52.580898 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[364] [Step Debug] -> + +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[376] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[364] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[364] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[364] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[364] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[352] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[358] [Step Debug] -> + +[364] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[352] [Step Debug] <- run -i 7 +[364] [Step Debug] <- run -i 7 +[355] Log opened at 2024-05-02 22:58:52.609170 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 7 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 8 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 22:58:52.883290 + +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 8 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 22:58:53.757549 + +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 8 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 22:58:54.197058 + +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 8 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 22:58:54.501781 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 8 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 22:58:54.779016 + +[23] Log opened at 2024-05-02 22:58:54.811231 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:58:55.819809 + +[23] Log opened at 2024-05-02 22:58:58.955340 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 22:59:00.140441 + +[369] Log opened at 2024-05-02 22:59:12.406967 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 7 +[369] [Step Debug] -> + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 8 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:59:13.605439 + +[369] Log opened at 2024-05-02 22:59:17.536233 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 7 +[369] [Step Debug] -> + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 8 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:59:18.345561 + +[369] Log opened at 2024-05-02 22:59:19.392923 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 7 +[369] [Step Debug] -> + +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 8 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 22:59:20.662254 + +[368] Log opened at 2024-05-02 22:59:40.079643 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[367] Log opened at 2024-05-02 22:59:40.080212 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[367] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[367] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[368] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[367] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] -> + +[367] [Step Debug] -> + +[368] [Step Debug] <- run -i 7 +[367] [Step Debug] <- run -i 7 +[367] [Step Debug] -> + +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 8 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:59:40.800956 + +[367] Log opened at 2024-05-02 22:59:40.822698 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 7 +[368] [Step Debug] -> + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 8 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:59:41.367362 + +[367] [Step Debug] -> + +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 8 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 22:59:41.915319 + +[368] Log opened at 2024-05-02 22:59:42.584801 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[368] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 788 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 7 +[368] [Step Debug] -> + +[368] [Step Debug] -> + +[368] [Step Debug] <- stack_get -i 8 +[368] [Step Debug] -> + +[368] [Step Debug] <- eval -i 9 -- JGlucHV0X2RhdGFbJ2dyYW1hamUnXQ== +[368] [Step Debug] -> + +[368] [Step Debug] <- context_names -i 10 -d 0 +[368] [Step Debug] -> + +[368] [Step Debug] <- context_get -i 11 -d 0 -c 0 +[368] [Step Debug] -> + +[368] [Step Debug] <- context_names -i 12 -d 0 +[368] [Step Debug] -> + +[368] [Step Debug] <- property_get -i 13 -d 0 -c 0 -n "'total_impresion" +[368] [Step Debug] -> + +[368] [Step Debug] <- breakpoint_remove -i 14 -d 3680008 +[368] [Step Debug] -> + +[368] [Step Debug] <- run -i 15 +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 16 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 22:59:54.509185 + +[379] Log opened at 2024-05-02 23:02:37.490334 +[379] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.379' +[379] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[379] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[379] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[379] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[379] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[379] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[379] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[379] [Step Debug] -> + +[379] [Step Debug] <- run -i 6 +[379] [Step Debug] -> + +[379] [Step Debug] <- stop -i 7 +[379] [Step Debug] -> + +[379] Log closed at 2024-05-02 23:02:38.774772 + +[355] Log opened at 2024-05-02 23:02:51.809046 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[355] [Step Debug] <- run -i 6 +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 23:02:53.024215 + +[352] Log opened at 2024-05-02 23:03:01.260352 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[352] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 23:03:02.792706 + +[376] Log opened at 2024-05-02 23:04:06.411619 +[376] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.376' +[376] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[376] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[376] [Step Debug] -> + +[376] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[376] [Step Debug] -> + +[376] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 709 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 7 +[376] [Step Debug] -> + +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 8 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 9 -- JGlucHV0X2RhdGFbJ2dyYW1hamUnXQ== +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 10 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 11 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 12 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 13 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 15 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 16 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 17 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 19 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 20 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 21 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 22 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_into -i 24 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 25 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 26 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 27 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 28 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 29 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 31 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 32 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 33 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 34 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 35 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 36 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 38 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 39 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 40 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 41 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 42 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 43 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 45 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 46 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 47 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 48 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 49 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 50 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 51 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 52 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 53 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 54 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 55 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 56 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 57 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 58 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 59 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 60 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 61 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 62 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 63 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 64 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 65 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 66 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 67 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 68 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 69 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 70 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 71 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 72 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 73 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 74 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 75 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 76 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 77 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 78 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 79 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 80 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 81 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 82 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 83 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 84 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 85 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 86 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- step_over -i 87 +[376] [Step Debug] -> + +[376] [Step Debug] <- stack_get -i 88 +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 89 -- JHRpcmFkYVskdF0= +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 90 -- JFBPRA== +[376] [Step Debug] -> + +[376] [Step Debug] <- eval -i 91 -- JG51bV9mb3JtYXM= +[376] [Step Debug] -> + +[376] [Step Debug] <- context_names -i 92 -d 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- context_get -i 93 -d 0 -c 0 +[376] [Step Debug] -> + +[376] [Step Debug] <- run -i 94 +[376] [Step Debug] -> + +[376] [Step Debug] <- stop -i 95 +[376] [Step Debug] -> + +[376] Log closed at 2024-05-02 23:05:40.094641 + +[358] Log opened at 2024-05-02 23:05:44.938491 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 709 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 7 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- stack_get -i 8 +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 9 -- JHRpcmFkYVskdF0= +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 10 -- JFBPRA== +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 11 -- JG51bV9mb3JtYXM= +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 12 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_get -i 13 -d 0 -c 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- step_into -i 14 +[358] [Step Debug] -> + +[358] [Step Debug] <- stack_get -i 15 +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 16 -- JHRpcmFkYVskdF0= +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 17 -- JFBPRA== +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 18 -- JG51bV9mb3JtYXM= +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 19 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 21 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- property_get -i 22 -d 0 -c 0 -n "$merma" +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 23 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- property_get -i 24 -d 0 -c 0 -n "$merma" +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 25 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- property_get -i 26 -d 0 -c 0 -n "$merma_lineas" +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_remove -i 27 -d 3580013 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 709 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_get -i 29 -d 3580014 +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 918 +[358] [Step Debug] -> + +[358] [Step Debug] -> + +[358] [Step Debug] <- breakpoint_get -i 31 -d 3580015 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 32 +[358] [Step Debug] -> + +[358] [Step Debug] <- stack_get -i 33 +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 34 -- JHRpcmFkYVskdF0= +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 35 -- JFBPRA== +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 36 -- JG51bV9mb3JtYXM= +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 37 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- step_over -i 39 +[358] [Step Debug] -> + +[358] [Step Debug] <- stack_get -i 40 +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 41 -- JHRpcmFkYVskdF0= +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 42 -- JFBPRA== +[358] [Step Debug] -> + +[358] [Step Debug] <- eval -i 43 -- JG51bV9mb3JtYXM= +[358] [Step Debug] -> + +[358] [Step Debug] <- context_names -i 44 -d 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 46 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 47 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 23:06:30.006309 + +[364] Log opened at 2024-05-02 23:06:33.494532 +[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364' +[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[364] [Step Debug] -> + +[364] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 709 +[364] [Step Debug] -> + +[364] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 918 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 8 +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 9 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 10 -- JHRpcmFkYVskdF0= +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 11 -- JFBPRA== +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 12 -- JG51bV9mb3JtYXM= +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 13 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 15 -- JHRpcmFkYVskdF0= +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 16 -- JFBPRA== +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 17 -- cm91bmQoJG1lcm1hLCAwKQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 18 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 20 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 21 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 22 -- JHRpcmFkYVskdF0= +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 23 -- JFBPRA== +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 24 -- cm91bmQoJG1lcm1hLCAwKQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 25 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 27 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 28 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 29 -- JHRpcmFkYVskdF0= +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 30 -- JFBPRA== +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 31 -- cm91bmQoJG1lcm1hLCAwKQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 32 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- step_over -i 34 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 35 +[364] [Step Debug] -> + +[364] [Step Debug] <- stack_get -i 36 +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 37 -- JHRpcmFkYVskdF0= +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 38 -- JFBPRA== +[364] [Step Debug] -> + +[364] [Step Debug] <- eval -i 39 -- cm91bmQoJG1lcm1hLCAwKQ== +[364] [Step Debug] -> + +[364] [Step Debug] <- context_names -i 40 -d 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[364] [Step Debug] -> + +[364] [Step Debug] <- run -i 42 +[364] [Step Debug] -> + +[364] [Step Debug] <- stop -i 43 +[364] [Step Debug] -> + +[364] Log closed at 2024-05-02 23:07:14.961740 + +[23] Log opened at 2024-05-02 23:07:18.915206 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 709 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 918 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 10 -- JHRpcmFkYVskdF0= +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 11 -- JFBPRA== +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 12 -- cm91bmQoJG1lcm1hLCAwKQ== +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 13 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 15 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 16 -d 0 -c 0 -n "'datosPedido" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 17 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 18 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 19 -- JHRpcmFkYVskdF0= +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 20 -- JFBPRA== +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 21 -- cm91bmQoJG1lcm1hLCAwKQ== +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 22 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 24 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 25 -d 0 -c 0 -n "'datosPedido" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 26 -d 230019 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 27 -d 230020 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 918 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 29 -d 230021 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 30 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 31 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 32 -- JHRpcmFkYVskdF0= +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 33 -- JFBPRA== +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 34 -- cm91bmQoJG1lcm1hLCAwKQ== +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 35 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 37 -d 230021 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 38 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 39 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-02 23:08:18.009242 + +[369] Log opened at 2024-05-02 23:08:20.701279 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 23:08:23.503203 + +[369] Log opened at 2024-05-02 23:08:23.689697 +[369] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.369' +[369] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[355] Log opened at 2024-05-02 23:08:23.698433 +[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355' +[369] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] -> + +[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[369] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[369] [Step Debug] -> + +[355] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[369] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[369] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[369] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[355] [Step Debug] -> + +[369] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[369] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[355] [Step Debug] -> + +[369] [Step Debug] <- run -i 6 +[355] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[355] [Step Debug] -> + +[355] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[355] [Step Debug] -> + +[352] Log opened at 2024-05-02 23:08:23.718948 +[379] Log opened at 2024-05-02 23:08:23.718937 +[352] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.352' +[379] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.379' +[355] [Step Debug] <- run -i 6 +[379] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[352] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[368] Log opened at 2024-05-02 23:08:23.721913 +[368] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.368' +[368] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[379] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[352] [Step Debug] -> + +[379] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[352] [Step Debug] -> + +[368] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[379] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[368] [Step Debug] -> + +[379] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[352] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[368] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[379] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[352] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[368] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[379] [Step Debug] -> + +[368] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[368] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[379] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[368] [Step Debug] -> + +[379] [Step Debug] -> + +[352] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[352] [Step Debug] -> + +[379] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[379] [Step Debug] -> + +[352] [Step Debug] <- run -i 6 +[368] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[368] [Step Debug] -> + +[379] [Step Debug] <- run -i 6 +[368] [Step Debug] <- run -i 6 +[369] [Step Debug] -> + +[369] [Step Debug] <- stop -i 7 +[369] [Step Debug] -> + +[369] Log closed at 2024-05-02 23:08:24.138950 + +[355] [Step Debug] -> + +[355] [Step Debug] <- stop -i 7 +[355] [Step Debug] -> + +[355] Log closed at 2024-05-02 23:08:25.027586 + +[379] [Step Debug] -> + +[379] [Step Debug] <- stop -i 7 +[379] [Step Debug] -> + +[379] Log closed at 2024-05-02 23:08:25.313670 + +[352] [Step Debug] -> + +[352] [Step Debug] <- stop -i 7 +[352] [Step Debug] -> + +[352] Log closed at 2024-05-02 23:08:25.587389 + +[368] [Step Debug] -> + +[368] [Step Debug] <- stop -i 7 +[368] [Step Debug] -> + +[368] Log closed at 2024-05-02 23:08:25.899331 + +[367] Log opened at 2024-05-02 23:08:25.945986 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 23:08:27.054649 + +[367] Log opened at 2024-05-02 23:08:29.823960 +[367] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.367' +[367] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[367] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[367] [Step Debug] -> + +[367] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[367] [Step Debug] -> + +[367] [Step Debug] <- run -i 6 +[367] [Step Debug] -> + +[367] [Step Debug] <- stop -i 7 +[367] [Step Debug] -> + +[367] Log closed at 2024-05-02 23:08:30.825353 + +[358] Log opened at 2024-05-02 23:08:50.399467 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 23:08:51.605760 + +[358] Log opened at 2024-05-02 23:08:55.663523 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 23:08:56.497028 + +[358] Log opened at 2024-05-02 23:08:57.599122 +[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358' +[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[358] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[358] [Step Debug] -> + +[358] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[358] [Step Debug] -> + +[358] [Step Debug] <- run -i 6 +[358] [Step Debug] -> + +[358] [Step Debug] <- stop -i 7 +[358] [Step Debug] -> + +[358] Log closed at 2024-05-02 23:08:58.616504 +