From fdb1fe77db24b36421700ae8921b1b57faa9a51c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 14 May 2024 17:39:28 +0200 Subject: [PATCH] trabajando en guardar presupuesto --- ci4/app/Config/Routes.php | 1 + .../Presupuestos/Presupuestocliente.php | 1013 +- .../Presupuestos/PresupuestoLineaModel.php | 76 + .../Models/Presupuestos/PresupuestoModel.php | 149 +- .../cliente/_direccionesItems.php | 6 +- .../presupuestos/cliente/_resumenItems.php | 6 + .../form/presupuestos/cliente/direcciones.js | 23 +- .../form/presupuestos/cliente/resumen.js | 106 +- .../cliente/viewPresupuestoclienteForm.php | 4 +- xdebug.log | 32485 ++++++++++++++++ 10 files changed, 33526 insertions(+), 343 deletions(-) diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php index 68f8b2ae..9e90e035 100755 --- a/ci4/app/Config/Routes.php +++ b/ci4/app/Config/Routes.php @@ -544,6 +544,7 @@ $routes->group('presupuestocliente', ['namespace' => 'App\Controllers\Presupuest $routes->post('getDireccionesCliente', 'Presupuestocliente::getDireccionesCliente', ['as' => 'getDirecciones']); $routes->post('getDatosDireccion', 'Presupuestocliente::getDatosDireccion', ['as' => 'getDatosDireccion']); $routes->post('getNuevaDireccion', 'Presupuestocliente::getNuevaDireccion', ['as' => 'nuevaDireccion']); + $routes->post('guardarPresupuesto', 'Presupuestocliente::guardarPresupuesto', ['as' => 'guardarPresupuesto']); }); $routes->resource('presupuestocliente', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Presupuestocliente', 'except' => 'show,new,create,update']); diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 9e124eee..736b7582 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -607,341 +607,70 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $newTokenHash = csrf_hash(); $csrfTokenName = csrf_token(); - $error = (object)[ - 'interior' => "", - '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']); - $precio_u = []; - $peso = []; - $lomo = 0.0; + $cliente_id = $reqData['clienteId'] ?? -1; + $isColor = intval($reqData['isColor']) ?? 0; + $isHq = intval($reqData['isHq']) ?? 0; - for ($t = 0; $t < count($tirada); $t++) { - $tirada[$t] = intval($tirada[$t]); + // Interior + $papel_generico = [ + 'id' => $reqData['papelInterior'] ?? 0, + 'nombre' => $reqData['papelInteriorNombre'] ?? "", + ]; + $gramaje = $reqData['gramajeInterior'] ?? 0; + $excluirRotativa = $reqData['excluirRotativa'] ?? 0; + $paginas = intval($reqData['paginas']) ?? 0; + $paginas_color = intval($reqData['paginasColor']) ?? 0; - $paginas_color = intval($reqData['paginasColor']) ?? 0; - $is_cosido = (new TipoPresupuestoModel())->get_isCosido($tipo_impresion_id); + // Cubierta + $papel_generico_cubierta = [ + 'id' => $reqData['papelCubierta'] ?? 0, + 'nombre' => $reqData['papelCubiertaNombre'] ?? "", + ]; + $gramajeCubierta = $reqData['gramajeCubierta'] ?? 0; + $carasCubierta = intval($reqData['carasCubierta'] ?? 0); + $solapasCubierta = intval($reqData['solapasCubierta'] ?? 0); + $acabadoCubierta = $reqData['datos_libro']['acabadoCubierta'] ?? 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, - ); + // Sobrecubierta + $sobreCubierta = $reqData["sobrecubierta"] ?? null; - $papel_generico = [ - 'id' => $reqData['papelInterior'] ?? 0, - 'nombre' => $reqData['papelInteriorNombre'] ?? "", - ]; - $gramaje = $reqData['gramajeInterior'] ?? 0; - $cliente_id = $reqData['clienteId'] ?? -1; - $excluirRotativa = $reqData['excluirRotativa'] ?? 0; + // Guardas + $datos_guardas = $reqData['guardas'] ?? 0; - $input_data = array( - 'uso' => 'interior', - 'tipo_impresion_id' => $tipo_impresion_id, - 'datosPedido' => $datosPedido, + $servicios = $reqData['servicios'] ?? []; + + $datos_presupuesto = array( + 'tirada' => $tirada, + 'tamanio' => $tamanio, + 'tipo_impresion_id' => $tipo_impresion_id, + 'clienteId' => $cliente_id, + 'isColor' => $isColor, + 'isHq' => $isHq, + + 'interior' => array( '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; - $peso_interior = 0.0; - foreach ($interior as $linea) { - if (count($linea) > 0) { - $costeInterior += floatval($linea['total_impresion']); - $peso_interior += floatval($linea['peso']); - $lomo += floatval($linea['mano']); - } - } - - if ($costeInterior <= 0) { - $error->interior = lang('Presupuestos.errores.noInterior'); - } - - // 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); - - $interior = PresupuestoClienteService::obtenerInterior($input_data); - } - - $costeInterior = 0.0; - $peso_interior = 0.0; - $lomo = 0; - foreach ($interior as $linea) { - if (count($linea) > 0) { - $costeInterior += floatval($linea['total_impresion']); - $peso_interior += floatval($linea['peso']); - $lomo += floatval($linea['mano']); - } - } - - if ($costeInterior <= 0) - $error->interior = lang('Presupuestos.errores.noInterior'); - else - $error->interior = ""; - - - // 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'; - - $cubierta = PresupuestoClienteService::obtenerCubierta($input_data); - $coste_cubierta = 0.0; - $peso_cubierta = 0.0; - if (count($cubierta) > 0) { - $coste_cubierta += floatval($cubierta['total_impresion']); - $peso_cubierta += floatval($cubierta['peso']); - $lomo += floatval($cubierta['mano']); - } - if ($coste_cubierta <= 0) - $error->cubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); - else - $error->cubierta = ""; - - $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); - } - - // Sobrecubierta - $coste_sobrecubierta = 0.0; - $peso_sobrecubierta = 0.0; - $linea_sobrecubierta = []; - $acabadoSobrecubierta = []; - $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']); - $peso_sobrecubierta += floatval($linea_sobrecubierta['peso']); - } - if ($coste_sobrecubierta <= 0) - $error->sobrecubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); - else - $error->sobrecubierta = ""; - - $tarifaAcabadoSobrecubierta = intval(strlen($sobreCubierta['acabado']) == 0 ? 0 : $sobreCubierta['acabado']); - $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); - } - } - - //Guardas - $guardas = []; - $peso_guardas = 0.0; - $coste_guardas = 0.0; - if ($reqData['guardas'] ?? 0 > 0) { - - $guardas = $reqData['guardas']; - $papel_generico = [ - 'id' => $guardas['papel'] ?? 0, - 'nombre' => $guardas['nombre'] ?? "", - ]; - $input_data['papel_generico'] = $papel_generico; - $input_data['gramaje'] = $guardas['gramaje'] ?? 0; - $input_data['datosPedido']->paginas = 8; - $input_data['paginas_color'] = 8; - $input_data['datosPedido']->paginas_impresion = $guardas['caras'] ?? 0; - $input_data['datosPedido']->solapas_ancho = 0; - $input_data['datosPedido']->solapas = 0; - $input_data['isColor'] = 1; - $input_data['isHq'] = 1; - $input_data['uso'] = 'guardas'; - - // Para el caso de Fresado y Cosido tapa dura, las guardas son un diptico - // y hay que imprimirlas como "cosido" (dos hojas pegadas). En el caso de espiral - // o wire-o tapa dura, las guardas se imprimen como hojas sueltas - if ($tipo_impresion_id == 1 || $tipo_impresion_id == 3) { - $input_data['datosPedido']->isCosido = true; - } else if ($tipo_impresion_id == 5 || $tipo_impresion_id == 7) { - $input_data['datosPedido']->isCosido = false; - } - - $guardas = PresupuestoClienteService::obtenerGuardas($input_data); - - if (count($guardas) > 0) { - $coste_guardas += floatval($guardas['total_impresion']); - $peso_guardas += floatval($guardas['peso']); - } - if ($coste_guardas <= 0) - $error->guardas = lang('Presupuestos.errores.noGuardas'); - else - $error->guardas = ""; - } - - // 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) > 0 ? 1 : 0, - ]); - $costeServiciosDefecto = 0.0; - foreach ($servDefecto as $servicio) { - if ($servicio->total <= 0) - $error->serviciosDefecto = lang('Presupuestos.errores.errorPresupuesto'); - - $costeServiciosDefecto += floatval($servicio->total); - } - - // Servicios - $servicios = $reqData['servicios'] ?? []; - if ($reqData['guardas'] ?? 0 > 0) { - array_push($servicios, 62); // Plegado de guardas - } - /* - 'retractilado' => 3, - 'retractilado5' => 5, - 'ferro' => 24, - 'prototipo' => 9, - 'fajaColor' => 16, - 'plegadoGuardas' => 62, - */ - $serviciosAutomaticos = []; - - foreach ($servicios as $servicio) { - if (intval($servicio) == 3 || intval($servicio) == 5 || intval($servicio) == 16) { - // Servicios acabado - $resultado = PresupuestoCLienteService::getServiciosManipulado([ - 'tarifa_id' => $servicio, - 'tirada' => $datosPedido->tirada, - 'POD' => $POD, - ]); - array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); - - $coste_servicios += floatval($resultado[0]->total); - } else if (intval($servicio) == 24 || intval($servicio) == 9) { - // Servicios preimpresion - $resultado = PresupuestoCLienteService::getServiciosExtra([ - 'tarifa_id' => $servicio, - ]); - array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->precio <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); - - $coste_servicios += floatval($resultado[0]->precio); - } else if (intval($servicio) == 62) { - // Servicios manipulado - $resultado = PresupuestoCLienteService::getServiciosManipulado([ - 'tarifa_id' => $servicio, - 'tirada' => $datosPedido->tirada, - 'POD' => $POD, - ]); - array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); - - $coste_servicios += floatval($resultado[0]->total); - } - } - - array_push($precio_u, round(($costeInterior + $coste_cubierta + $coste_sobrecubierta + $costeServiciosDefecto + $coste_servicios) / $tirada[$t], 4)); - array_push($peso, round($peso_interior + $peso_cubierta + $peso_sobrecubierta + $peso_guardas, 2)); - foreach ($error as $err) { - if ($err != "") - break; - } - } - - - $return_data = [ - 'errors' => $error, - 'total_lp' => $costeInterior + $coste_cubierta + $coste_sobrecubierta, + 'paginas' => $paginas, + 'paginas_color' => $paginas_color, + ), + 'cubierta' => array( + 'papel_generico_cubierta' => $papel_generico_cubierta, + 'gramajeCubierta' => $gramajeCubierta, + 'carasCubierta' => $carasCubierta, + 'solapasCubierta' => $solapasCubierta, + ), 'acabadoCubierta' => $acabadoCubierta, - 'acabadoSobrecubierta' => $acabadoSobrecubierta, - 'total_servicios_defecto' => $costeServiciosDefecto, - 'total_servicios_automaticos' => $coste_servicios, - 'tiradas' => $tirada, - 'precio_u' => $precio_u, - 'peso' => $peso, - 'lomo_cubierta' => $lomo, - - 'interior' => $interior, - 'cubierta' => $cubierta, - 'sobrecubierta' => $linea_sobrecubierta, - 'guardas' => $guardas, - 'serviciosDefecto' => $servDefecto, - 'servicios_automaticos' => $serviciosAutomaticos, - $csrfTokenName => $newTokenHash - ]; + 'sobrecubierta' => $sobreCubierta, + 'datos_guardas' => $datos_guardas, + 'servicios' => $servicios, + ); + $return_data = $this->calcular_presupuesto($datos_presupuesto); + array_merge($return_data, [$csrfTokenName => $newTokenHash]); return $this->respond($return_data); } else { @@ -990,7 +719,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $modelTarifaEnvio = model('App\Models\Tarifas\TarifaEnvioModel'); $coste = 0; if ($data > 0) { - $tarifas_envio = $modelTarifaEnvio->getTarifaEnvio($data[0]->pais_id, $peso, $unidades, $entregaPieCalle?'palets':'cajas'); + $tarifas_envio = $modelTarifaEnvio->getTarifaEnvio($data[0]->pais_id, $peso, $unidades, $entregaPieCalle ? 'palets' : 'cajas'); for ($i = 0; $i < count($tarifas_envio); $i++) { if ($peso > $tarifas_envio[$i]->peso_max) { $tarifas_envio[$i]->precio = number_format($tarifas_envio[$i]->peso_min + ($peso - $tarifas_envio[$i]->peso_min) * $tarifas_envio[$i]->precio_adicional, 2); @@ -1004,24 +733,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $tarifas_envio[$i]->margen = $tarifas_envio[$i]->margen; } - if(count($tarifas_envio) > 1){ + if (count($tarifas_envio) > 1) { $tarifa_final = array_reduce($tarifas_envio, function ($previous, $current) { return $current->precio < $previous->precio ? $current : $previous; }); $coste = $tarifa_final->precio; + } else { + if (count($tarifas_envio) > 0) + $coste = $tarifas_envio[0]->precio; } - else{ - if(count($tarifas_envio) > 0) - $coste = $tarifas_envio[0]->precio; - } - - } - if(count($data)>0){ + if (count($data) > 0) { $data[0]->coste = $coste; - $data[0]->tipo = $entregaPieCalle?'palets':'cajas'; + $data[0]->tipo = $entregaPieCalle ? 'palets' : 'cajas'; } - + return $this->respond([ 'data' => $data, @@ -1070,12 +796,633 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } + public function guardarPresupuesto() + { + if ($this->request->isAJAX()) { + + $reqData = $this->request->getPost(); + + $newTokenHash = csrf_hash(); + $csrfTokenName = csrf_token(); + + $datosCabecera = $reqData['datos_cabecera'] ?? []; + + $tirada = $reqData['datos_libro']['tirada'] ?? 0; + $selected_tirada = $reqData['tirada'] ?? 0; + $tamanio = $reqData['datos_libro']['tamanio']; + $tipo_impresion_id = $this->getTipoImpresion($reqData['datos_libro']['tipo'], $reqData['datos_libro']['tapa']); + $cliente_id = $reqData['datos_libro']['clienteId'] ?? -1; + $isColor = intval($reqData['datos_libro']['isColor']) ?? 0; + $isHq = intval($reqData['datos_libro']['isHq']) ?? 0; + + // Interior + $papel_generico = [ + 'id' => $reqData['datos_libro']['papelInterior'] ?? 0, + 'nombre' => $reqData['datos_libro']['papelInteriorNombre'] ?? "", + ]; + $gramaje = $reqData['datos_libro']['gramajeInterior'] ?? 0; + $excluirRotativa = $reqData['datos_libro']['excluirRotativa'] ?? 0; + $paginas = intval($reqData['datos_libro']['paginas']) ?? 0; + $paginas_color = intval($reqData['datos_libro']['paginasColor']) ?? 0; + + // Cubierta + $papel_generico_cubierta = [ + 'id' => $reqData['datos_libro']['papelCubierta'] ?? 0, + 'nombre' => $reqData['datos_libro']['papelCubiertaNombre'] ?? "", + ]; + $gramajeCubierta = $reqData['datos_libro']['gramajeCubierta'] ?? 0; + $carasCubierta = intval($reqData['datos_libro']['carasCubierta'] ?? 0); + $solapasCubierta = intval($reqData['datos_libro']['solapasCubierta'] ?? 0); + $acabadoCubierta = $reqData['datos_libro']['acabadoCubierta'] ?? 0; + + // Sobrecubierta + $sobreCubierta = $reqData['datos_libro']["sobrecubierta"] ?? null; + + // Guardas + $datos_guardas = $reqData['datos_libro']['guardas'] ?? 0; + + $servicios = $reqData['datos_libro']['servicios'] ?? []; + + $datos_presupuesto = array( + 'tirada' => $tirada, + 'tamanio' => $tamanio, + 'tipo_impresion_id' => $tipo_impresion_id, + 'clienteId' => $cliente_id, + 'isColor' => $isColor, + 'isHq' => $isHq, + + 'interior' => array( + 'papel_generico' => $papel_generico, + 'gramaje' => $gramaje, + 'excluirRotativa' => $excluirRotativa, + 'paginas' => $paginas, + 'paginas_color' => $paginas_color, + ), + 'cubierta' => array( + 'papel_generico_cubierta' => $papel_generico_cubierta, + 'gramajeCubierta' => $gramajeCubierta, + 'carasCubierta' => $carasCubierta, + 'solapasCubierta' => $solapasCubierta, + ), + 'acabadoCubierta' => $acabadoCubierta, + 'sobrecubierta' => $sobreCubierta, + 'datos_guardas' => $datos_guardas, + 'servicios' => $servicios, + ); + + $resultado_presupuesto = $this->calcular_presupuesto($datos_presupuesto , true); + + if(isset($resultado_presupuesto['errors'])){ + $errors = $resultado_presupuesto['errors']; + foreach ($errors as $error) { + if (!empty($error)) { + return $this->respond([ + 'error' => $error, + $csrfTokenName => $newTokenHash + ]); + } + } + } + else if(isset($resultado_presupuesto['exception'])){ + return $this->respond([ + 'error' => $resultado_presupuesto['exception'], + $csrfTokenName => $newTokenHash + ]); + } + + //$model_presupuesto = new PresupuestoModel(); + //$id = $model_presupuesto->insertarPresupuestoCliente($selected_tirada, $datos_presupuesto, $datosCabecera, $resultado_presupuesto['info']); + + $iva_reducido = $reqData['iva_reducido']; + + foreach ($reqData['direcciones'] as $direccion){ + $this->guardarLineaEnvio($id, $direccion); + } + + return $this->respond([ + 'value' => $id, + $csrfTokenName => $newTokenHash + ]); + + } else { + return $this->failUnauthorized('Invalid request', 403); + } + } + /*********************** * * Funciones auxiliares * **********************/ + protected function guardarLineaEnvio($presupuestoId, $direccion){ + + } + + + protected function calcular_presupuesto($datos_entrada , $extra_info =false) + { + try { + + if($extra_info){ + $info = [ + 'merma' => 0, + 'lomo_cubierta' => 0.0, + 'lomo_sobrecubierta' => 0.0, + 'user_id' => auth()->user()->id, + ]; + } + + $tirada = $datos_entrada['tirada']; + $tamanio = $datos_entrada['tamanio']; + $tipo_impresion_id = $datos_entrada['tipo_impresion_id']; + $cliente_id = $datos_entrada['clienteId'] ?? -1; + $isColor = $datos_entrada['isColor']; + $isHq = $datos_entrada['isHq']; + + // Interior + $papel_generico = $datos_entrada['interior']['papel_generico']; + $gramaje = $datos_entrada['interior']['gramaje']; + $excluirRotativa = $datos_entrada['interior']['excluirRotativa']; + $paginas = $datos_entrada['interior']['paginas']; + $paginas_color = $datos_entrada['interior']['paginas_color']; + + // Cubierta + $papel_generico_cubierta = $datos_entrada['cubierta']['papel_generico_cubierta']; + $gramajeCubierta = $datos_entrada['cubierta']['gramajeCubierta']; + $carasCubierta = $datos_entrada['cubierta']['carasCubierta']; + $solapasCubierta = $datos_entrada['cubierta']['solapasCubierta']; + + // Sobrecubierta + $sobreCubierta = $datos_entrada["sobrecubierta"] ?? null; + + // Guardas + $datos_guardas = $datos_entrada['guardas'] ?? []; + + // Servicios + $servicios = $datos_entrada['servicios'] ?? []; + + $error = (object)[ + 'interior' => "", + 'cubierta' => "", + 'sobrecubierta' => "", + 'guardas' => "", + 'servicios' => "", + 'serviciosDefecto' => "", + ]; + $coste_servicios = 0.0; + + $POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); + + $precio_u = []; + $peso = []; + if($extra_info) + $totales = []; + $lomo = 0.0; + + for ($t = 0; $t < count($tirada); $t++) { + + // Inicialización para los totalizadores + if($extra_info){ + $totalPapel = 0.0; + $margenPapel = 0.0; + $totalImpresion = 0.0; + $margenImpresion = 0.0; + + $sumForFactor = 0.0; + $sumForFactorPonderado = 0.0; + + $totalServicios = 0.0; + $margenServicios = 0.0; + } + $tirada[$t] = intval($tirada[$t]); + + $is_cosido = (new TipoPresupuestoModel())->get_isCosido($tipo_impresion_id); + + $datosPedido = (object)array( + 'paginas' => $paginas, + '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, + ); + if($extra_info){ + $info['merma'] = $datosPedido->merma; + } + + $input_data = array( + 'uso' => 'interior', + 'tipo_impresion_id' => $tipo_impresion_id, + 'datosPedido' => $datosPedido, + 'papel_generico' => $papel_generico, + 'gramaje' => $gramaje, + 'isColor' => $isColor, + 'isHq' => $isHq, + 'cliente_id' => $cliente_id, + 'paginas_color' => $paginas_color, + 'excluirRotativa' => $excluirRotativa, + ); + + $interior = PresupuestoClienteService::obtenerInterior($input_data); + + $costeInterior = 0.0; + $peso_interior = 0.0; + foreach ($interior as $linea) { + if (count($linea) > 0) { + $costeInterior += floatval($linea['total_impresion']); + $peso_interior += floatval($linea['peso']); + $lomo += floatval($linea['mano']); + if($extra_info){ + $this->calcular_coste_linea($linea, + $totalPapel, $margenPapel, $sumForFactor, $totalImpresion, $margenImpresion); + } + } + } + + if ($costeInterior <= 0) { + $error->interior = lang('Presupuestos.errores.noInterior'); + } + + // 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); + if($extra_info){ + $info['merma'] = max($info['merma'], $input_data['datosPedido']->merma); + } + $interior = PresupuestoClienteService::obtenerInterior($input_data); + + $costeInterior = 0.0; + $peso_interior = 0.0; + $lomo = 0; + if($extra_info){ + $totalPapel = 0.0; + $margenPapel = 0.0; + $sumForFactor = 0.0; + $totalImpresion = 0.0; + $margenImpresion = 0.0; + } + foreach ($interior as $linea) { + if (count($linea) > 0) { + $costeInterior += floatval($linea['total_impresion']); + $peso_interior += floatval($linea['peso']); + $lomo += floatval($linea['mano']); + if($extra_info){ + + $this->calcular_coste_linea($linea, + $totalPapel, $margenPapel, $sumForFactor, $totalImpresion, $margenImpresion); + } + } + } + } + + if ($costeInterior <= 0) + $error->interior = lang('Presupuestos.errores.noInterior'); + else + $error->interior = ""; + + + // Cubierta + $input_data['papel_generico'] = $papel_generico_cubierta; + $input_data['gramaje'] = $gramajeCubierta; + $input_data['datosPedido']->paginas = $carasCubierta; + $input_data['paginas_color'] = $carasCubierta; + $input_data['datosPedido']->solapas_ancho = $solapasCubierta; + $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'; + + $cubierta = PresupuestoClienteService::obtenerCubierta($input_data); + $coste_cubierta = 0.0; + $peso_cubierta = 0.0; + if (count($cubierta) > 0) { + $coste_cubierta += floatval($cubierta['total_impresion']); + $peso_cubierta += floatval($cubierta['peso']); + $lomo += floatval($cubierta['mano']); + if($extra_info){ + + $this->calcular_coste_linea($linea, + $totalPapel, $margenPapel, $sumForFactor, $totalImpresion, $margenImpresion); + } + } + if ($coste_cubierta <= 0) + $error->cubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); + else + $error->cubierta = ""; + + $tarifaAcabadoCubierta = intval($datos_entrada['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); + } + + // Sobrecubierta + $coste_sobrecubierta = 0.0; + $peso_sobrecubierta = 0.0; + $linea_sobrecubierta = []; + $acabadoSobrecubierta = []; + $lomo_sobrecubierta = 0.0; + 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']); + $peso_sobrecubierta += floatval($linea_sobrecubierta['peso']); + if($extra_info){ + + $this->calcular_coste_linea($linea, + $totalPapel, $margenPapel, $sumForFactor, $totalImpresion, $margenImpresion); + } + } + if ($coste_sobrecubierta <= 0) + $error->sobrecubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); + else + $error->sobrecubierta = ""; + + $lomo_sobrecubierta = $lomo + floatval($linea_sobrecubierta['mano']); + + $tarifaAcabadoSobrecubierta = intval(strlen($sobreCubierta['acabado']) == 0 ? 0 : $sobreCubierta['acabado']); + $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); + } + } + + //Guardas + $guardas = []; + $peso_guardas = 0.0; + $coste_guardas = 0.0; + + if (count($datos_guardas) != 0) { + + $guardas = $datos_guardas; + $papel_generico = [ + 'id' => $datos_guardas['papel'] ?? 0, + 'nombre' => $datos_guardas['nombre'] ?? "", + ]; + $input_data['papel_generico'] = $papel_generico; + $input_data['gramaje'] = $datos_guardas['gramaje'] ?? 0; + $input_data['datosPedido']->paginas = 8; + $input_data['paginas_color'] = 8; + $input_data['datosPedido']->paginas_impresion = $datos_guardas['caras'] ?? 0; + $input_data['datosPedido']->solapas_ancho = 0; + $input_data['datosPedido']->solapas = 0; + $input_data['isColor'] = 1; + $input_data['isHq'] = 1; + $input_data['uso'] = 'guardas'; + + // Para el caso de Fresado y Cosido tapa dura, las guardas son un diptico + // y hay que imprimirlas como "cosido" (dos hojas pegadas). En el caso de espiral + // o wire-o tapa dura, las guardas se imprimen como hojas sueltas + if ($tipo_impresion_id == 1 || $tipo_impresion_id == 3) { + $input_data['datosPedido']->isCosido = true; + } else if ($tipo_impresion_id == 5 || $tipo_impresion_id == 7) { + $input_data['datosPedido']->isCosido = false; + } + + $guardas = PresupuestoClienteService::obtenerGuardas($input_data); + + if (count($guardas) > 0) { + $coste_guardas += floatval($guardas['total_impresion']); + $peso_guardas += floatval($guardas['peso']); + if($extra_info){ + + $this->calcular_coste_linea($linea, + $totalPapel, $margenPapel, $sumForFactor, $totalImpresion, $margenImpresion); + } + } + if ($coste_guardas <= 0) + $error->guardas = lang('Presupuestos.errores.noGuardas'); + else + $error->guardas = ""; + } + + if($extra_info){ + $totalPapel -= $margenPapel; + $totalImpresion -= $margenImpresion; + + $porcentajeMargenPapel = is_numeric($margenPapel/($totalPapel)*100.0)? $margenPapel/($totalPapel)*100.0 : 0; + $porcentajeMargenImpresion = is_numeric($margenImpresion/($totalImpresion)*100.0) ? $margenImpresion/($totalImpresion)*100.0 : 0; + } + + // Servicios defecto + $servDefecto = PresupuestoCLienteService::getServiciosEncuadernacionDefault([ + 'tipo_impresion_id' => $tipo_impresion_id, + 'tirada' => $datosPedido->tirada, + 'paginas' => intval($paginas) ?? 0, + 'ancho' => $datosPedido->ancho, + 'alto' => $datosPedido->alto, + 'POD' => $POD, + 'solapas' => intval($solapasCubierta) > 0 ? 1 : 0, + ]); + $costeServiciosDefecto = 0.0; + foreach ($servDefecto as $servicio) { + if ($servicio->total <= 0) + $error->serviciosDefecto = lang('Presupuestos.errores.errorPresupuesto'); + + $costeServiciosDefecto += floatval($servicio->total); + if($extra_info){ + $totalServicios += floatval($servicio->total); + $margenServicios += floatval($servicio->total)*floatval($servicio->margen)/100.0; + } + } + + if($extra_info){ + $sumForFactorPonderado = $sumForFactor; + } + + // Servicios + if ($datos_guardas > 0) { + array_push($servicios, 62); // Plegado de guardas + } + /* + 'retractilado' => 3, + 'retractilado5' => 5, + 'ferro' => 24, + 'prototipo' => 9, + 'fajaColor' => 16, + 'plegadoGuardas' => 62, + */ + $serviciosAutomaticos = []; + + foreach ($servicios as $servicio) { + if (intval($servicio) == 3 || intval($servicio) == 5 || intval($servicio) == 16) { + // Servicios acabado + $resultado = PresupuestoCLienteService::getServiciosManipulado([ + 'tarifa_id' => $servicio, + 'tirada' => $datosPedido->tirada, + 'POD' => $POD, + ]); + array_push($serviciosAutomaticos, $resultado[0]); + if ($resultado[0]->total <= 0) + $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + $coste_servicios += floatval($resultado[0]->total); + if($extra_info){ + $totalServicios += floatval($resultado[0]->total); + $margenServicios += floatval($resultado[0]->total)*floatval($resultado[0]->margen)/100.0; + } + } else if (intval($servicio) == 24 || intval($servicio) == 9) { + // Servicios preimpresion + $resultado = PresupuestoCLienteService::getServiciosExtra([ + 'tarifa_id' => $servicio, + ]); + array_push($serviciosAutomaticos, $resultado[0]); + if ($resultado[0]->precio <= 0) + $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + $coste_servicios += floatval($resultado[0]->precio); + if($extra_info){ + $totalServicios += floatval($resultado[0]->total); + $margenServicios += floatval($resultado[0]->total)*floatval($resultado[0]->margen)/100.0; + } + } else if (intval($servicio) == 62) { + // Servicios manipulado + $resultado = PresupuestoCLienteService::getServiciosManipulado([ + 'tarifa_id' => $servicio, + 'tirada' => $datosPedido->tirada, + 'POD' => $POD, + ]); + array_push($serviciosAutomaticos, $resultado[0]); + if ($resultado[0]->total <= 0) + $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + $coste_servicios += floatval($resultado[0]->total); + if($extra_info){ + $totalServicios += floatval($resultado[0]->total); + $margenServicios += floatval($resultado[0]->total)*floatval($resultado[0]->margen)/100.0; + } + } + } + + array_push($precio_u, round(($costeInterior + $coste_cubierta + $coste_sobrecubierta + $costeServiciosDefecto + $coste_servicios) / $tirada[$t], 4)); + array_push($peso, round($peso_interior + $peso_cubierta + $peso_sobrecubierta + $peso_guardas, 2)); + foreach ($error as $err) { + if ($err != "") + break; + } + + if($extra_info){ + $totalServicios -= $margenServicios; + $porcentajeMargenServicios = $margenServicios/($margenServicios+$totalServicios)*100; + $sumForFactorPonderado += $totalServicios; + } + + if($extra_info){ + array_push($totales, array( + 'totalPapel' => $totalPapel, + 'margenPapel' => $margenPapel, + 'totalImpresion' => $totalImpresion, + 'margenImpresion' => $margenImpresion, + + 'sumForFactor' => $sumForFactor, + 'sumForFactorPonderado' => $sumForFactorPonderado, + + 'totalServicios' => $totalServicios, + 'margenServicios' => $margenServicios, + + 'porcentajeMargenPapel' => $porcentajeMargenPapel, + 'porcentajeMargenImpresion' => $porcentajeMargenImpresion, + 'porcentajeMargenServicios' => $porcentajeMargenServicios)); + } + } + + + $return_data = [ + 'errors' => $error, + 'total_lp' => $costeInterior + $coste_cubierta + $coste_sobrecubierta, + 'acabadoCubierta' => $acabadoCubierta, + 'acabadoSobrecubierta' => $acabadoSobrecubierta, + 'total_servicios_defecto' => $costeServiciosDefecto, + 'total_servicios_automaticos' => $coste_servicios, + 'tiradas' => $tirada, + 'precio_u' => $precio_u, + 'peso' => $peso, + 'lomo_cubierta' => $lomo, + 'lomo_sobrecubierta'=> $lomo_sobrecubierta, + 'totales' => $totales, + + 'interior' => $interior, + 'cubierta' => $cubierta, + 'sobrecubierta' => $linea_sobrecubierta, + 'guardas' => $guardas, + 'serviciosDefecto' => $servDefecto, + 'servicios_automaticos' => $serviciosAutomaticos, + ]; + + if($extra_info){ + $info['lomo_cubierta'] = $lomo; + $info['lomo_sobrecubierta'] = $lomo_sobrecubierta; + $return_data['info'] = $info; + } + return $return_data; + + } catch (Exception $e) { + return ['exception' => $e->getMessage()]; + } + } + + + protected function calcular_coste_linea($linea, &$totalPapel, &$margenPapel, &$sumForFactor, &$totalImpresion, &$margenImpresion){ + if(count($linea) == 0) + return; + $totalPapel += $linea['precio_pedido']; + $margenPapel += $linea['margen_papel_pedido']; + $sumForFactor += $linea['precio_pedido']; + $sumForFactor -= $linea['precio_pedido']; + + $totalImpresion += $linea['precio_impresion_horas']; + $totalImpresion += $linea['precio_click_pedido']; + $sumForFactor += $linea['precio_click_pedido']; + + if($linea['tipo_maquina'] == 'inkjet'){ + $totalImpresion += $linea['precio_tinta']; + $totalImpresion += $linea['total_corte']; + $sumForFactor += $linea['total_corte']; + } + $margenImpresion += $linea['margen_impresion_horas']; + $margenImpresion += $linea['margen_click_pedido']; + $sumForFactor -= $linea['margen_click_pedido']; + + } + protected function calcular_lomo($lineas, $lomo_inicial) { $lomo = $lomo_inicial; diff --git a/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php b/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php index e37350a2..1dfe3eb3 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php @@ -412,6 +412,82 @@ class PresupuestoLineaModel extends \App\Models\BaseModel ->update(); } + public function insertLPFromBackend($presupuesto_id, $new_linea) + { + $rot_total_impresion = $new_linea['fields']['precio_click_pedido']??0.0 + + $new_linea['fields']['precio_tinta']??0.0+$new_linea['fields']['total_Corte']??0.0; + + $data = [ + 'presupuesto_id' => $presupuesto_id, + "pliegos_precio" => $new_linea['fields']['precios_pliegos'], + "libro" => $new_linea['fields']['precio_libro'], + "total_papel_pedido" => round($new_linea['fields']['precio_pedido'], 2), + "margen_papel_pedido" => round($new_linea['fields']['margen_papel_pedido'], 2), + "mano" => $new_linea['fields']['mano'], + "precio_click" => round($new_linea['fields']['precio_click'], 6), + "precio_click_pedido" => round($new_linea['fields']['precio_click_pedido'], 2), + "margen_click_pedido" => round($new_linea['fields']['margen_click_pedido'], 2), + "tiempo_maquina" => strtotime($new_linea['fields']['tiempo_maquina']) - strtotime('TODAY'), + "tarifa_impresion_id" => $new_linea['fields']['tarifa_impresion_id'], + "rotativa_total_impresion" => $rot_total_impresion, + "rotativa_a_favor_fibra" => $new_linea['fields']['a_favor_fibra'] ?? 0, + "rotativa_mxm" => $new_linea['fields']['maquina_velocidad'] ?? 0, + "rotativa_resolucion" => $new_linea['fields']['resolucion'] ?? 0, + "rotativa_area_paginas" => $new_linea['fields']['superficie'] ?? 0, + "rotativa_num_gotas_negro" => $new_linea['fields']['num_gotas_negro'] ?? 0, + "rotativa_num_gotas_cyan" => $new_linea['fields']['num_gotas_cyan'] ?? 0, + "rotativa_num_gotas_magenta" => $new_linea['fields']['num_gotas_magenta'] ?? 0, + "rotativa_num_gotas_amarillo" => $new_linea['fields']['num_gotas_amarillo'] ?? 0, + "rotativa_num_gotas_cg" => $new_linea['fields']['num_gotas_cg'] ?? 0, + "rotativa_peso_gotas_negro" => $new_linea["fields"]["peso_gotas_negro"] ?? 0, + "rotativa_peso_gotas_cyan" => $new_linea['fields']['peso_gotas_cyan'] ?? 0, + "rotativa_peso_gotas_magenta" => $new_linea['fields']['peso_gotas_magenta'] ?? 0, + "rotativa_peso_gotas_amarillo" => $new_linea['fields']['peso_gotas_amarillo'] ?? 0, + "rotativa_peso_gotas_cg" => $new_linea['fields']['peso_gotas_cg'] ?? 0, + "rotativa_peso_gotas_negro_pedido" => $new_linea["fields"]["peso_gotas_negro_pedido"] ?? 0, + "rotativa_peso_gotas_cyan_pedido" => $new_linea["fields"]["peso_gotas_cyan_pedido"] ?? 0, + "rotativa_peso_gotas_magenta_pedido" => $new_linea["fields"]["peso_gotas_magenta_pedido"] ?? 0, + "rotativa_peso_gotas_amarillo_pedido" => $new_linea["fields"]["peso_gotas_amarillo_pedido"] ?? 0, + "rotativa_peso_gotas_cg_pedido" => $new_linea["fields"]["peso_gotas_cg_pedido"] ?? 0, + "rotativa_precio_pag_negro" => $new_linea['fields']['precio_pagina_negro'] ?? 0, + "rotativa_precio_pag_color" => $new_linea['fields']['precio_pagina_color'] ?? 0, + "rotativa_factor_altura" => $new_linea['fields']['factor_altura'] ?? 0, + "rotativa_factor_anchura" => $new_linea['fields']['factor_anchura'] ?? 0, + "rotativa_pag_por_pliego" => $new_linea['fields']['paginas_por_pliego'] ?? 0, + "rotativa_metros_libro" => $new_linea['fields']['metros_papel_libro'] ?? 0, + "rotativa_metros_total" => $new_linea['fields']['metros_papel_total'] ?? 0, + "rotativa_clicks_libro" => $new_linea['fields']['clicks_libro'] ?? 0, + "rotativa_clicks_total" => $new_linea['fields']['clicks_pedido'] ?? 0, + "rotativa_precio_tinta" => $new_linea['fields']['precio_tinta'] ?? 0, + "rotativa_velocidad_corte" => $new_linea['fields']['velocidad_corte'] ?? 0, + "rotativa_tiempo_corte" => $new_linea['fields']['tiempo_corte'] ?? 0, + "rotativa_precio_hora_corte" => $new_linea['fields']['precio_hora_corte'] ?? 0, + "rotativa_total_corte" => $new_linea['fields']['total_corte'] ?? 0, + "horas_maquina" => round($new_linea['fields']['horas_maquina'],4), + "precio_hora" => $new_linea['fields']['precio_hora'] ?? 0, + "precio_impresion" => $new_linea['fields']['precio_impresion_horas'] ?? 0, + "total_linea" => round($new_linea['fields']['total_impresion'], 2) ?? 0, + "margen_impresion" => $new_linea['fields']['margen_impresion_horas'] ?? 0, + ]; + + if(array_key_exists('datosTipologias', $new_linea['fields'])){ + $data += [ + "rotativa_negro" => $new_linea['fields']['datosTipologias']->negro ?? 0, + "rotativa_cyan" => $new_linea['fields']['datosTipologias']->cyan ?? 0, + "rotativa_magenta" => $new_linea['fields']['datosTipologias']->magenta ?? 0, + "rotativa_amarillo" => $new_linea['fields']['datosTipologias']->amarillo ?? 0, + "rotativa_cg" => $new_linea['fields']['datosTipologias']->cg ?? 0, + "rotativa_gota_negro" => $new_linea['fields']['datosTipologias']->gota_negro ?? 0, + "rotativa_gota_color" => $new_linea['fields']['datosTipologias']->gota_color + ]; + } + return $this->db + ->table($this->table . " t1") + ->set($data) + ->insert(); + } + + public function deleteLineasPresupuesto($presupuesto_id) { $this->db diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php index f028ba81..6d7b9217 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php @@ -2,6 +2,9 @@ namespace App\Models\Presupuestos; +use App\Models\Configuracion\TipoPresupuestoModel; + + class PresupuestoModel extends \App\Models\BaseModel { protected $table = "presupuestos"; @@ -262,10 +265,10 @@ class PresupuestoModel extends \App\Models\BaseModel $builder->groupEnd(); return $builder; } - } - public function removeIsDuplicado($presupuesto_id){ + public function removeIsDuplicado($presupuesto_id) + { $this->db ->table($this->table . " t1") ->where('id', $presupuesto_id) @@ -307,4 +310,146 @@ class PresupuestoModel extends \App\Models\BaseModel return $builder; } + + function insertarPresupuestoCliente($tirada, $data, $data_cabecera, $extra_info) + { + + helper('date'); + + $model = model('App\Models\Configuracion\PapelFormatoModel'); + $papel_formato_id = $model->where('ancho', $data['tamanio']['ancho'])->where('alto', $data['tamanio']['alto'])->first(); + + $is_cosido = (new TipoPresupuestoModel())->get_isCosido($data['tipo_impresion_id']); + + $fields = [ + 'cliente_id' => $data['clienteId'], + 'tipo_impresion_id' => $data['tipo_impresion_id'], + 'pais_id' => 1, + 'retractilado' => in_array(3, $data['servicios']) ? 1 : 0, + 'retractilado5' => in_array(5, $data['servicios']) ? 1 : 0, + 'guardas' => in_array(62, $data['servicios']) ? 1 : 0, + 'faja_color' => in_array(16, $data['servicios']) ? 1 : 0, + 'ferro' => in_array(24, $data['servicios']) ? 1 : 0, + 'prototipo' => in_array(9, $data['servicios']) ? 1 : 0, + 'papel_formato_id' => is_null($papel_formato_id) ? 0: $papel_formato_id->id, + 'papel_formato_personalizado' => !$papel_formato_id ? 1:0, + 'papel_formato_ancho' => !$papel_formato_id ? $data['tamanio']['ancho']:null, + 'papel_formato_alto' => !$papel_formato_id ? $data['tamanio']['alto']:null, + 'titulo' => $data_cabecera['titulo'], + 'referencia_cliente' => $data_cabecera['referenciaCliente'], + 'paginas' => $data['interior']['paginas'], + 'tirada' => $tirada, + 'solapas' => $data['cubierta']['solapasCubierta']>0 ? 1 : 0, + 'solapas_ancho' => $data['cubierta']['solapasCubierta']>0 ? $data['cubierta']['solapasCubierta'] : 0, + 'solapas_sobrecubierta' => is_null($data['sobrecubierta']) ? 0 :1, + 'solapas_ancho_sobrecubierta' => is_null($data['sobrecubierta']) ? 0 : $data['sobrecubierta']['solapas'], + 'cosido' => $is_cosido, + 'merma' => $extra_info['merma'], + 'merma_cubierta' => $extra_info['merma'], + + 'lomo_cubierta' => $extra_info['lomo_cubierta'], + 'lomo_sobrecubierta' => $extra_info['lomo_sobrecubierta'], + + 'comparador_json_data' => $this->generateJson($data), + + 'acabado_cubierta_id' => $data['acabadoCubierta'], + 'acabado_sobrecubierta_id' => is_null($data['sobrecubierta']) ? 0 : $data['sobrecubierta']['acabado'], + + 'comp_tipo_impresion' => $data['isHq']? ($data['isColor']? 'colorhq':'negrohq'):($data['isColor']? 'color':'negro'), + + 'user_created_id' => $extra_info['user_id'], + 'created_at' => date('Y-m-d H:i:s', now()), + 'updated_at' => date('Y-m-d H:i:s', now()), + + 'tirada_alternativa_json_data' => null, + + 'total_presupuesto' => 0, + 'total_coste_papel' => 0, + 'total_margen_papel' => 0, + 'total_margenPercent_papel' => 0, + 'total_coste_impresion' => 0, + 'total_margen_impresion' => 0, + 'total_margenPercent_impresion' => 0, + 'total_coste_servicios' => 0, + 'total_margen_servicios' => 0, + 'total_margenPercent_servicios' => 0, + 'total_coste_envios' => 0, + 'total_margen_envios' => 0, + 'total_costes' => 0, + 'total_margenes' => 0, + 'total_antes_descuento' => 0, + 'total_descuento' => 0, + 'total_descuentoPercent' => 0, + 'total_precio_unidad' => 0, + + 'total_factor' => 0, + 'total_factor_ponderado' => 0, + + ]; + + $this->db->table($this->table)->insert($fields); + return $this->db->insertID(); + } + + private function generateJson($data) + { + $values = array(); + if (is_array($data)) { + // -- INTERIOR -- + // Si hay negro + if($data['interior']['paginas'] > $data['interior']['paginas_color']){ + + if($data['isHq']) + $key = 'bnhq'; + else + $key = 'bn'; + $values[$key] = array( + 'paginas'=> intval($data['interior']['paginas'])-intval($data['interior']['paginas_color']), + 'papel_id' => intval($data['interior']['papel_generico']['id']), + 'gramaje' => intval($data['interior']['gramaje']), + ); + } + // Si hay color + if($data['interior']['paginas_color']>0){ + + if($data['isHq']) + $key = 'colorhq'; + else + $key = 'color'; + $values[$key] = array( + 'paginas'=> intval($data['interior']['paginas_color']), + 'papel_id' => intval($data['interior']['papel_generico']['id']), + 'gramaje' => intval($data['interior']['gramaje']), + ); + } + + // -- CUBIERTA -- + $values['cubierta'] = array( + 'papel_id' => intval($data['cubierta']['papel_generico_cubierta']['id']), + 'gramaje' => intval($data['cubierta']['gramajeCubierta']), + 'paginas' => intval($data['cubierta']['carasCubierta']), + ); + + // -- SOBRECUBIERTA -- + if(!is_null($data['sobrecubierta'])){ + $values['sobrecubierta'] = array( + 'papel_id' => intval($data['sobrecubierta']['papel']), + 'gramaje' => intval($data['sobrecubierta']['gramaje']), + 'imprimir' => 1, + ); + } + + // -- GUARDAS -- + if($data['datos_guardas'] != 0){ + $values['guardas'] = array( + 'papel_id' => intval($data['datos_guardas']['papel']), + 'gramaje' => intval($data['datos_guardas']['gramaje']), + 'paginas' => intval($data['datos_guardas']['caras']), + ); + } + + } + $json = json_encode($values); + return $json; + } } diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_direccionesItems.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_direccionesItems.php index 7b2b10bb..149ff801 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_direccionesItems.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_direccionesItems.php @@ -40,8 +40,8 @@ section("additionalInlineJs") ?> window.routes_direcciones = { -direcciones: "", -getDatos: "", -nuevaDireccion: "", + direcciones: "", + getDatos: "", + nuevaDireccion: "", } endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php index 9b7ef76a..b70b5fc2 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php @@ -47,3 +47,9 @@ +section("additionalInlineJs") ?> + +window.routes_resumen = { + guardarPresupuesto: "", +} +endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/direcciones.js b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/direcciones.js index 12439b42..34715c00 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/direcciones.js +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/direcciones.js @@ -192,8 +192,6 @@ $('#insertarDireccion').on('click', function() { $('#errorDirecciones').text('El número de unidades supera la tirada seleccionada.'); $('#errorDirecciones').show(); } - - } return false; }) @@ -311,4 +309,25 @@ function validarEnvio(){ return false; } return true; +} + +function getDireccionesEnvio(){ + + const elements = $('#divDirecciones').find('.row.mb-3'); + + let direcciones = []; + + if(elements.length > 0) { + for (let index=0; index0 && $('#gramajeSobrecubierta option:selected').val()>0){ + + datos_libro.sobrecubierta = { + papel: $('#papelSobrecubierta option:selected').val(), + papel_nombre: $('#papelSobrecubierta option:selected').text().trim(), + gramaje: $('#gramajeSobrecubierta option:selected').text(), + acabado: $('#acabadosSobrecubierta').val() + } + + datos.sobrecubierta.solapas = $('#anchoSolapasSobrecubierta').val() + } + } + + if ($('.guardas').is(':visible')) { + datos_libro.guardas = { + papel: $('#papelGuardas option:selected').val(), + papel_nombre: $('#papelGuardas option:selected').text().trim(), + gramaje: 170, + caras: $('#impresionGuardas option:selected').val() + } + } + + let datos_cabecera = { + titulo: $('#titulo').val(), + referenciaCliente: $('#referenciaCliente').val(), + } + + const seleccion = $('.custom-option-tiradasDirecciones.checked'); + let tirada = 0; + if(seleccion.length != 0) { + + const element_tirada =($(seleccion[0]).find('label input')[0]); + const number = element_tirada.id.match(/\d+$/); + if (number.length != 0) { + tirada = parseInt($('#tiradaDireccionesValue' + number[0]).text()); + } + } + + let direcciones = getDireccionesEnvio(); + datos = { + datos_libro : datos_libro, + datos_cabecera: datos_cabecera, + direcciones: direcciones, + tirada: tirada, + iva_reducido: $('#ivaReducido').val()==1?1:0, + }, + datos = Object.assign(datos, window.token_ajax) + + $('#loader').show(); + + $.ajax({ + url: window.routes_resumen.guardarPresupuesto, + type: 'POST', + data: datos, + success: function(response) { + if(response.length > 0) { + + + } + $('#loader').hide(); + }, + error: function() { + $('#loader').hide(); + }, + }); + +}); \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php index a8a60b89..40fe7322 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/viewPresupuestoclienteForm.php @@ -151,7 +151,7 @@
- @@ -236,10 +236,10 @@ initDisenioLibro(); + - endSection() ?> \ No newline at end of file diff --git a/xdebug.log b/xdebug.log index e645aa6a..9588c29a 100644 --- a/xdebug.log +++ b/xdebug.log @@ -494984,3 +494984,32488 @@ Stack trace: [56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). [56] Log closed at 2024-05-13 11:59:07.341017 +[57] Log opened at 2024-05-13 12:18:42.619252 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-05-13 12:18:56.742026 + +[57] Log opened at 2024-05-13 12:18:56.926141 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log opened at 2024-05-13 12:18:57.340872 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[47] Log opened at 2024-05-13 12:18:57.341424 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[33] Log opened at 2024-05-13 12:18:57.343418 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log opened at 2024-05-13 12:18:57.359553 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log opened at 2024-05-13 12:18:57.399542 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-05-13 12:18:58.470062 + +[57] Log opened at 2024-05-13 12:18:58.489067 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:19:01.511803 + +[47] Log opened at 2024-05-13 12:19:01.523775 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-05-13 12:19:02.879866 + +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-05-13 12:19:04.704201 + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-05-13 12:19:08.236608 + +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-05-13 12:19:09.788735 + +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-05-13 12:19:10.506822 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:19:11.198457 + +[47] Log opened at 2024-05-13 12:19:11.251260 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:19:14.054553 + +[41] Log opened at 2024-05-13 12:19:24.570062 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-05-13 12:19:27.661571 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log opened at 2024-05-13 12:19:27.820743 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log opened at 2024-05-13 12:19:27.912561 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log opened at 2024-05-13 12:19:28.017997 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log opened at 2024-05-13 12:19:28.162832 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log opened at 2024-05-13 12:19:28.267189 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log opened at 2024-05-13 12:19:29.441702 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log opened at 2024-05-13 12:19:29.797470 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log opened at 2024-05-13 12:19:29.869784 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log opened at 2024-05-13 12:19:30.155727 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log opened at 2024-05-13 12:19:30.320589 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log opened at 2024-05-13 12:19:30.509453 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log opened at 2024-05-13 12:19:30.585667 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log opened at 2024-05-13 12:19:30.976555 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log opened at 2024-05-13 12:19:31.134963 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 12:19:31.240451 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log opened at 2024-05-13 12:19:31.383603 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-05-13 12:19:31.543650 + +[67] Log opened at 2024-05-13 12:19:31.547517 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log opened at 2024-05-13 12:19:31.616077 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-05-13 12:19:33.529235 + +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-05-13 12:19:35.433836 + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-05-13 12:19:36.716412 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-05-13 12:19:39.664416 + +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-05-13 12:19:42.502376 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-05-13 12:19:44.895232 + +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-05-13 12:19:46.342603 + +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-05-13 12:19:47.753731 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:19:50.125803 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-05-13 12:19:52.780867 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-05-13 12:19:55.465366 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-05-13 12:19:58.001426 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-05-13 12:20:00.270642 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:20:02.800740 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:20:05.594623 + +[53] Log opened at 2024-05-13 12:20:06.470124 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[58] Log opened at 2024-05-13 12:20:06.470508 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:20:07.541903 + +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-05-13 12:20:08.373871 + +[53] Log opened at 2024-05-13 12:20:08.411186 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-05-13 12:20:08.428621 + +[58] Log opened at 2024-05-13 12:20:08.482648 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-05-13 12:20:09.287648 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-05-13 12:20:11.095947 + +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-05-13 12:20:11.358402 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-05-13 12:20:11.483468 + +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:20:13.572478 + +[63] Log opened at 2024-05-13 12:20:28.804136 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log opened at 2024-05-13 12:20:31.826331 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-05-13 12:20:33.250412 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:20:35.918857 + +[64] Log opened at 2024-05-13 12:20:37.451328 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:20:42.916525 + +[64] Log opened at 2024-05-13 12:20:46.285015 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:20:50.878141 + +[64] Log opened at 2024-05-13 12:20:55.056635 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:21:01.372695 + +[64] Log opened at 2024-05-13 12:21:04.936352 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:21:09.754412 + +[62] Log opened at 2024-05-13 12:23:09.807254 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:23:25.159781 + +[62] Log opened at 2024-05-13 12:23:25.410497 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log opened at 2024-05-13 12:23:25.434806 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[65] Log opened at 2024-05-13 12:23:25.435102 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log opened at 2024-05-13 12:23:25.448708 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[58] Log opened at 2024-05-13 12:23:25.450180 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] Log opened at 2024-05-13 12:23:25.453301 +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:23:26.687186 + +[62] Log opened at 2024-05-13 12:23:26.707187 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-05-13 12:23:29.761713 + +[66] Log opened at 2024-05-13 12:23:29.787312 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:23:31.848953 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-05-13 12:23:33.810819 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-05-13 12:23:36.498969 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:23:38.452044 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:23:39.253110 + +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-05-13 12:23:39.818284 + +[58] Log opened at 2024-05-13 12:23:39.880965 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-05-13 12:23:42.570630 + +[68] Log opened at 2024-05-13 12:23:49.064385 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:23:56.916344 + +[68] Log opened at 2024-05-13 12:24:00.071879 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log opened at 2024-05-13 12:24:00.238234 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log opened at 2024-05-13 12:24:00.331219 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log opened at 2024-05-13 12:24:00.518489 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 12:24:00.722821 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log opened at 2024-05-13 12:24:00.801216 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log opened at 2024-05-13 12:24:00.974312 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log opened at 2024-05-13 12:24:01.052281 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:24:04.076794 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:24:05.278245 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:24:08.313405 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-05-13 12:24:10.302680 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-05-13 12:24:12.049069 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:24:13.660638 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:24:15.332694 + +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-05-13 12:24:18.189310 + +[76] Log opened at 2024-05-13 12:24:27.507066 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log opened at 2024-05-13 12:24:30.717016 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:24:34.420715 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-05-13 12:24:36.808286 + +[76] Log opened at 2024-05-13 12:24:38.260575 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:24:43.997696 + +[76] Log opened at 2024-05-13 12:24:44.667547 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:24:49.229875 + +[68] Log opened at 2024-05-13 12:24:55.464053 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:25:01.919640 + +[68] Log opened at 2024-05-13 12:25:03.568429 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:25:09.248889 + +[65] Log opened at 2024-05-13 12:30:22.815777 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:30:37.312975 + +[65] Log opened at 2024-05-13 12:30:37.544839 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-05-13 12:30:37.553343 +[62] Log opened at 2024-05-13 12:30:37.553340 +[68] Log opened at 2024-05-13 12:30:37.553767 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[76] Log opened at 2024-05-13 12:30:37.553759 +[64] Log opened at 2024-05-13 12:30:37.553704 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:30:38.792401 + +[65] Log opened at 2024-05-13 12:30:38.808267 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:30:41.725435 + +[76] Log opened at 2024-05-13 12:30:41.737164 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:30:43.852654 + +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:30:45.773577 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-05-13 12:30:47.732994 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:30:50.218125 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:30:50.703904 + +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:30:51.367483 + +[64] Log opened at 2024-05-13 12:30:51.442150 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-13 12:30:54.433037 + +[47] Log opened at 2024-05-13 12:31:11.980205 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log opened at 2024-05-13 12:31:13.884777 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log opened at 2024-05-13 12:31:14.072959 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log opened at 2024-05-13 12:31:14.214218 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log opened at 2024-05-13 12:31:14.289641 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log opened at 2024-05-13 12:31:14.400874 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 12:31:14.513748 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log opened at 2024-05-13 12:31:14.587996 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:31:18.704709 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:31:20.285047 + +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:31:21.969497 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-05-13 12:31:23.406409 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:31:24.635513 + +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:31:26.158931 + +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-05-13 12:31:29.061871 + +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] Log closed at 2024-05-13 12:31:31.441254 + +[80] Log opened at 2024-05-13 12:31:35.370341 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log opened at 2024-05-13 12:31:37.072678 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 12:31:41.516287 + +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-05-13 12:31:43.824414 + +[81] Log opened at 2024-05-13 12:31:46.842734 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-05-13 12:31:52.405447 + +[81] Log opened at 2024-05-13 12:31:53.048319 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-05-13 12:31:57.881900 + +[47] Log opened at 2024-05-13 12:32:05.626998 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:32:10.282020 + +[47] Log opened at 2024-05-13 12:32:12.303985 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:32:17.209992 + +[77] Log opened at 2024-05-13 12:34:10.539714 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-05-13 12:34:25.843726 + +[77] Log opened at 2024-05-13 12:34:26.063482 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log opened at 2024-05-13 12:34:26.121417 +[47] Log opened at 2024-05-13 12:34:26.121886 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[68] Log opened at 2024-05-13 12:34:26.122648 +[81] Log opened at 2024-05-13 12:34:26.122999 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[74] Log opened at 2024-05-13 12:34:26.125688 +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-05-13 12:34:27.478633 + +[77] Log opened at 2024-05-13 12:34:27.508675 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:34:32.039053 + +[47] Log opened at 2024-05-13 12:34:32.052712 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-05-13 12:34:33.410726 + +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:34:35.022226 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:34:37.329196 + +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-05-13 12:34:39.011353 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-05-13 12:34:39.665933 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:34:40.278181 + +[47] Log opened at 2024-05-13 12:34:40.361432 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-05-13 12:34:43.245953 + +[80] Log opened at 2024-05-13 12:34:48.523101 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 12:34:56.192273 + +[80] Log opened at 2024-05-13 12:35:01.060846 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 12:35:01.132285 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log opened at 2024-05-13 12:35:01.412387 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-05-13 12:35:01.542241 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log opened at 2024-05-13 12:35:01.633507 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log opened at 2024-05-13 12:35:01.732024 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log opened at 2024-05-13 12:35:01.838263 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log opened at 2024-05-13 12:35:01.932073 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 12:35:04.999319 + +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-05-13 12:35:06.535381 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 12:35:07.876573 + +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 12:35:09.240526 + +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-05-13 12:35:10.331190 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 12:35:13.451054 + +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 12:35:16.302182 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 12:35:19.176367 + +[84] Log opened at 2024-05-13 12:35:19.926213 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log opened at 2024-05-13 12:35:22.413263 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-05-13 12:35:26.335367 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 12:35:29.030079 + +[85] Log opened at 2024-05-13 12:35:30.299861 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 12:35:36.049074 + +[85] Log opened at 2024-05-13 12:35:38.367952 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 12:35:42.949598 + +[85] Log opened at 2024-05-13 12:35:45.695859 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 12:35:50.697604 + +[85] Log opened at 2024-05-13 12:35:52.527780 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 12:35:57.724106 + +[80] Log opened at 2024-05-13 13:12:19.845014 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 13:12:34.216493 + +[80] Log opened at 2024-05-13 13:12:34.443503 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log opened at 2024-05-13 13:12:34.456132 +[82] Log opened at 2024-05-13 13:12:34.456446 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[84] Log opened at 2024-05-13 13:12:34.458180 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-05-13 13:12:34.468555 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] Log opened at 2024-05-13 13:12:34.468940 +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 13:12:35.940773 + +[80] Log opened at 2024-05-13 13:12:35.961158 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-05-13 13:12:39.732852 + +[84] Log opened at 2024-05-13 13:12:39.746862 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-05-13 13:12:41.842172 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:12:43.915071 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 13:12:45.857068 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 13:12:48.088252 + +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 13:12:48.557981 + +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-05-13 13:12:49.111598 + +[85] Log opened at 2024-05-13 13:12:49.184061 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log opened at 2024-05-13 13:12:50.165031 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-05-13 13:12:51.446648 + +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-05-13 13:12:54.305395 + +[68] Log opened at 2024-05-13 13:13:06.987046 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 13:13:13.802790 + +[68] Log opened at 2024-05-13 13:13:17.140548 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 13:13:21.762178 + +[68] Log opened at 2024-05-13 13:13:23.613104 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-13 13:13:29.461261 + +[74] Log opened at 2024-05-13 13:20:57.562740 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 11 +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:21:11.473149 + +[74] Log opened at 2024-05-13 13:21:11.717949 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-05-13 13:21:11.728672 +[80] Log opened at 2024-05-13 13:21:11.728570 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[65] Log opened at 2024-05-13 13:21:11.729747 +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[68] Log opened at 2024-05-13 13:21:11.731768 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[74] [Step Debug] -> + +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] -> + +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] -> + +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] Log opened at 2024-05-13 13:21:11.738488 +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[80] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[85] [Step Debug] -> + +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] -> + +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] -> + +[68] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[85] [Step Debug] -> + +[74] [Step Debug] -> + +[68] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[86] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] -> + +[74] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] -> + +[80] [Step Debug] -> + +[86] [Step Debug] -> + +[65] [Step Debug] -> + +[74] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[80] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[65] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[80] [Step Debug] -> + +[74] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[80] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[80] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[86] [Step Debug] -> + +[85] [Step Debug] -> + +[68] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[85] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[80] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[65] [Step Debug] -> + +[85] [Step Debug] -> + +[68] [Step Debug] -> + +[80] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[85] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[80] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[65] [Step Debug] -> + +[80] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[85] [Step Debug] -> + +[68] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[80] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[65] [Step Debug] -> + +[80] [Step Debug] -> + +[85] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[65] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[85] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[65] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[85] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[74] [Step Debug] <- run -i 11 +[80] [Step Debug] <- run -i 11 +[85] [Step Debug] <- run -i 11 +[65] [Step Debug] <- run -i 11 +[68] [Step Debug] <- run -i 11 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[86] [Step Debug] -> + +[86] [Step Debug] <- run -i 11 +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:21:13.070295 + +[74] Log opened at 2024-05-13 13:21:13.092256 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 11 +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:21:16.489279 + +[68] Log opened at 2024-05-13 13:21:16.504648 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 11 +[80] [Step Debug] -> + +[80] Log closed at 2024-05-13 13:21:18.597032 + +[85] [Step Debug] -> + +[85] Log closed at 2024-05-13 13:21:20.478170 + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:21:22.214722 + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[86] [Step Debug] -> + +[86] Log closed at 2024-05-13 13:21:24.085567 + +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:21:24.647152 + +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:21:25.228081 + +[68] Log opened at 2024-05-13 13:21:25.299682 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 11 +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:21:27.972427 + +[82] Log opened at 2024-05-13 13:23:17.757303 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:23:32.503476 + +[82] Log opened at 2024-05-13 13:23:32.834597 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[65] Log opened at 2024-05-13 13:23:32.852630 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[74] Log opened at 2024-05-13 13:23:32.853671 +[86] Log opened at 2024-05-13 13:23:32.853662 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] Log opened at 2024-05-13 13:23:32.860289 +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] Log opened at 2024-05-13 13:23:32.866734 +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[65] [Step Debug] -> + +[86] [Step Debug] -> + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] -> + +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[86] [Step Debug] -> + +[82] [Step Debug] -> + +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] -> + +[65] [Step Debug] -> + +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[65] [Step Debug] -> + +[68] [Step Debug] -> + +[82] [Step Debug] -> + +[86] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[86] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[82] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[86] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[86] [Step Debug] -> + +[74] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[65] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[65] [Step Debug] <- run -i 5 +[86] [Step Debug] <- run -i 5 +[68] [Step Debug] <- run -i 3 +[74] [Step Debug] <- run -i 5 +[62] [Step Debug] <- run -i 1 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:23:34.096540 + +[82] Log opened at 2024-05-13 13:23:34.115904 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:23:36.831622 + +[62] Log opened at 2024-05-13 13:23:36.851614 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[86] [Step Debug] -> + +[86] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[86] [Step Debug] -> + +[86] Log closed at 2024-05-13 13:23:38.480648 + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:23:41.985451 + +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:23:44.539101 + +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:23:46.620996 + +[74] Log opened at 2024-05-13 13:24:20.390745 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[65] Log opened at 2024-05-13 13:24:20.391568 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[65] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[65] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[74] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[74] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[74] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[62] [Step Debug] <- run -i 11 +[74] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 13 +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 13 +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:24:22.199197 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:24:22.886692 + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:24:29.868599 + +[65] Log opened at 2024-05-13 13:24:30.113167 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 11 +[85] Log opened at 2024-05-13 13:24:30.584546 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[80] Log opened at 2024-05-13 13:24:30.585769 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] Log opened at 2024-05-13 13:24:30.593292 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] -> + +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[85] [Step Debug] -> + +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[85] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[80] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[87] Log opened at 2024-05-13 13:24:30.620603 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] -> + +[68] [Step Debug] -> + +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] -> + +[80] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[80] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[68] [Step Debug] -> + +[85] [Step Debug] -> + +[80] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[80] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] -> + +[68] [Step Debug] -> + +[80] [Step Debug] -> + +[87] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[80] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[85] [Step Debug] -> + +[80] [Step Debug] -> + +[82] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[80] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[80] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[87] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] Log closed at 2024-05-13 13:24:30.643870 + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[87] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] -> + +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[85] [Step Debug] -> + +[85] [Step Debug] <- run -i 13 +[87] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 13 +[87] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] -> + +[80] [Step Debug] <- run -i 13 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 10 +[84] Log opened at 2024-05-13 13:24:30.688025 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 11 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:24:31.717092 + +[65] Log opened at 2024-05-13 13:24:31.740282 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 11 +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:24:33.981656 + +[68] Log opened at 2024-05-13 13:24:34.039300 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 11 +[85] [Step Debug] -> + +[85] Log closed at 2024-05-13 13:24:35.911062 + +[80] [Step Debug] -> + +[80] Log closed at 2024-05-13 13:24:37.902188 + +[84] [Step Debug] -> + +[84] Log closed at 2024-05-13 13:24:39.789491 + +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] Log closed at 2024-05-13 13:24:41.396167 + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:24:41.922450 + +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:24:42.383078 + +[85] Log opened at 2024-05-13 13:24:42.452415 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[85] [Step Debug] -> + +[85] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[85] [Step Debug] -> + +[85] [Step Debug] <- run -i 11 +[85] [Step Debug] -> + +[85] Log closed at 2024-05-13 13:24:45.084179 + +[88] Log opened at 2024-05-13 13:25:08.476065 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 11 +[62] Log opened at 2024-05-13 13:25:10.457074 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 11 +[74] Log opened at 2024-05-13 13:25:10.537499 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 11 +[82] Log opened at 2024-05-13 13:25:10.754660 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[80] Log opened at 2024-05-13 13:25:10.911987 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[80] [Step Debug] -> + +[80] [Step Debug] <- run -i 11 +[84] Log opened at 2024-05-13 13:25:11.006711 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 11 +[65] Log opened at 2024-05-13 13:25:11.109961 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 11 +[68] Log opened at 2024-05-13 13:25:11.195091 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 11 +[87] Log opened at 2024-05-13 13:25:11.322912 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 11 +[88] [Step Debug] -> + +[88] Log closed at 2024-05-13 13:25:14.015134 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:25:15.285516 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:25:16.087014 + +[80] [Step Debug] -> + +[80] Log closed at 2024-05-13 13:25:16.797915 + +[84] [Step Debug] -> + +[84] Log closed at 2024-05-13 13:25:17.622474 + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:25:18.346371 + +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:25:19.180518 + +[87] [Step Debug] -> + +[87] Log closed at 2024-05-13 13:25:20.193696 + +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:25:22.533659 + +[95] Log opened at 2024-05-13 13:25:32.467380 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 11 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 13:25:37.772287 + +[95] Log opened at 2024-05-13 13:25:42.335593 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 11 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 13:25:45.506506 + +[95] Log opened at 2024-05-13 13:25:47.486130 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 672 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 11 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 12 +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 13 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 13:26:48.281996 + +[88] Log opened at 2024-05-13 13:26:58.710755 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 10 +[88] [Step Debug] -> + +[88] [Step Debug] -> + +[88] Log closed at 2024-05-13 13:27:02.516325 + +[88] Log opened at 2024-05-13 13:27:05.959114 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[88] [Step Debug] <- run -i 10 +[88] [Step Debug] -> + +[88] [Step Debug] -> + +[88] Log closed at 2024-05-13 13:27:09.618037 + +[80] Log opened at 2024-05-13 13:28:06.920701 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[80] [Step Debug] -> + +[80] [Step Debug] <- run -i 10 +[80] [Step Debug] -> + +[80] [Step Debug] -> + +[80] Log closed at 2024-05-13 13:28:16.294317 + +[80] Log opened at 2024-05-13 13:28:16.479433 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[95] Log opened at 2024-05-13 13:28:16.495842 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] Log opened at 2024-05-13 13:28:16.500050 +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] Log opened at 2024-05-13 13:28:16.499955 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[80] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[95] [Step Debug] -> + +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-05-13 13:28:16.511792 +[80] [Step Debug] -> + +[88] [Step Debug] -> + +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[62] [Step Debug] -> + +[80] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] -> + +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] Log opened at 2024-05-13 13:28:16.518100 +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] -> + +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] <- run -i 3 +[88] [Step Debug] <- run -i 3 +[95] [Step Debug] <- run -i 4 +[80] [Step Debug] <- run -i 10 +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[68] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[68] [Step Debug] -> + +[82] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[82] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[68] [Step Debug] -> + +[82] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[68] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[68] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[68] [Step Debug] -> + +[80] [Step Debug] -> + +[80] Log closed at 2024-05-13 13:28:17.226156 + +[80] Log opened at 2024-05-13 13:28:17.243434 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[80] [Step Debug] -> + +[80] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[80] [Step Debug] -> + +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] Log closed at 2024-05-13 13:28:18.821826 + +[88] Log opened at 2024-05-13 13:28:18.836833 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[88] [Step Debug] -> + +[88] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[88] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:28:19.851131 + +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 13:28:22.118301 + +[82] [Step Debug] <- run -i 11 +[80] [Step Debug] <- run -i 10 +[68] [Step Debug] <- run -i 11 +[88] [Step Debug] <- run -i 10 +[88] [Step Debug] -> + +[88] Log closed at 2024-05-13 13:28:23.933573 + +[80] [Step Debug] -> + +[80] Log closed at 2024-05-13 13:28:24.225419 + +[68] [Step Debug] -> + +[68] Log closed at 2024-05-13 13:28:25.301443 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:28:26.438624 + +[82] Log opened at 2024-05-13 13:28:26.562379 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 10 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:28:28.323876 + +[82] Log opened at 2024-05-13 13:28:30.249999 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 10 +[65] Log opened at 2024-05-13 13:28:31.891168 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 10 +[74] Log opened at 2024-05-13 13:28:32.104596 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[74] [Step Debug] -> + +[74] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[74] [Step Debug] -> + +[74] [Step Debug] <- run -i 10 +[84] Log opened at 2024-05-13 13:28:32.211855 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 10 +[87] Log opened at 2024-05-13 13:28:32.306382 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[87] [Step Debug] -> + +[87] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[87] [Step Debug] -> + +[87] [Step Debug] <- run -i 10 +[96] Log opened at 2024-05-13 13:28:32.432412 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] -> + +[96] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[96] [Step Debug] -> + +[96] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[96] [Step Debug] -> + +[96] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[96] [Step Debug] -> + +[96] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[96] [Step Debug] -> + +[96] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[96] [Step Debug] -> + +[96] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[96] [Step Debug] -> + +[96] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[96] [Step Debug] -> + +[96] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[96] [Step Debug] -> + +[96] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[96] [Step Debug] -> + +[96] [Step Debug] <- run -i 10 +[62] Log opened at 2024-05-13 13:28:32.541379 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 10 +[95] Log opened at 2024-05-13 13:28:32.649414 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 10 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:28:35.899778 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:28:36.699370 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 13:28:37.532702 + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-13 13:28:39.335341 + +[74] [Step Debug] -> + +[74] Log closed at 2024-05-13 13:28:42.036431 + +[84] [Step Debug] -> + +[84] Log closed at 2024-05-13 13:28:43.471181 + +[87] [Step Debug] -> + +[87] Log closed at 2024-05-13 13:28:45.924816 + +[96] [Step Debug] -> + +[96] Log closed at 2024-05-13 13:28:48.742249 + +[98] Log opened at 2024-05-13 13:29:26.429160 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 10 +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 13:29:32.215855 + +[98] Log opened at 2024-05-13 13:29:36.457707 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 10 +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 13:29:39.273452 + +[98] Log opened at 2024-05-13 13:29:40.714483 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 10 +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 13:29:44.960870 + +[99] Log opened at 2024-05-13 13:29:53.067609 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[99] [Step Debug] -> + +[99] [Step Debug] <- run -i 10 +[99] [Step Debug] -> + +[99] [Step Debug] -> + +[99] Log closed at 2024-05-13 13:29:58.531974 + +[82] Log opened at 2024-05-13 13:30:03.715514 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 10 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:30:06.915942 + +[62] Log opened at 2024-05-13 13:31:10.528974 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 10 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:31:14.855459 + +[62] Log opened at 2024-05-13 13:31:19.566270 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 10 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-13 13:31:22.925429 + +[65] Log opened at 2024-05-13 13:32:41.720315 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 13:32:50.121294 + +[65] Log opened at 2024-05-13 13:32:50.299659 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log opened at 2024-05-13 13:32:50.314882 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[99] Log opened at 2024-05-13 13:32:50.316718 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] Log opened at 2024-05-13 13:32:50.323206 +[82] Log opened at 2024-05-13 13:32:50.323197 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[84] Log opened at 2024-05-13 13:32:50.324258 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 13:32:51.167023 + +[65] Log opened at 2024-05-13 13:32:51.183586 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 13:32:52.977026 + +[62] Log opened at 2024-05-13 13:32:52.992362 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-05-13 13:32:53.950377 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:32:54.888411 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:32:56.386575 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:32:58.056353 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 13:32:58.415605 + +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-13 13:32:58.888628 + +[84] Log opened at 2024-05-13 13:32:58.940474 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-05-13 13:33:00.588120 + +[87] Log opened at 2024-05-13 13:33:12.235678 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-05-13 13:33:18.248611 + +[96] Log opened at 2024-05-13 13:33:23.562227 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-05-13 13:33:23.643454 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log opened at 2024-05-13 13:33:23.715191 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log opened at 2024-05-13 13:33:23.888482 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-05-13 13:33:24.046048 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log opened at 2024-05-13 13:33:24.140234 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 13:33:24.267840 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:33:27.777617 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:33:29.954956 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:33:31.162219 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:33:33.402288 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:33:34.558857 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 13:33:35.216277 + +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-05-13 13:33:37.119556 + +[101] Log opened at 2024-05-13 13:33:50.706051 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:33:56.965628 + +[101] Log opened at 2024-05-13 13:34:00.119851 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:34:02.981532 + +[101] Log opened at 2024-05-13 13:34:04.332034 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:34:08.808326 + +[101] Log opened at 2024-05-13 13:34:10.716852 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:34:14.345006 + +[102] Log opened at 2024-05-13 13:34:21.752907 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:34:27.763009 + +[103] Log opened at 2024-05-13 13:35:19.876119 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:35:21.862840 + +[96] Log opened at 2024-05-13 13:35:21.883769 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:35:24.123108 + +[95] Log opened at 2024-05-13 13:35:24.260746 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:35:25.481761 + +[99] Log opened at 2024-05-13 13:35:25.738994 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:35:27.337182 + +[96] Log opened at 2024-05-13 13:35:27.719327 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:35:30.614981 + +[96] Log opened at 2024-05-13 13:35:30.634430 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:35:34.621947 + +[96] Log opened at 2024-05-13 13:35:34.732164 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log opened at 2024-05-13 13:35:34.887182 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] Log opened at 2024-05-13 13:35:34.904354 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 13:35:34.923644 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[104] Log opened at 2024-05-13 13:35:34.924687 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log opened at 2024-05-13 13:35:34.969021 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:35:35.618820 + +[96] Log opened at 2024-05-13 13:35:35.628539 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:35:37.506732 + +[101] Log opened at 2024-05-13 13:35:37.514739 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:35:38.145824 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 13:35:38.995060 + +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] Log closed at 2024-05-13 13:35:39.711695 + +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-05-13 13:35:40.396582 + +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:35:41.103913 + +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:35:41.321367 + +[102] Log opened at 2024-05-13 13:35:41.358542 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:35:42.553133 + +[102] Log opened at 2024-05-13 13:35:42.748979 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:35:45.356347 + +[102] Log opened at 2024-05-13 13:35:47.407715 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log opened at 2024-05-13 13:35:47.617476 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log opened at 2024-05-13 13:35:47.729314 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-05-13 13:35:47.851478 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-05-13 13:35:47.932537 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log opened at 2024-05-13 13:35:48.025355 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-05-13 13:35:48.133628 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:35:49.480192 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:35:50.495082 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:35:51.406437 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-05-13 13:35:51.866777 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:35:52.863579 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:35:53.772543 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:35:54.721357 + +[96] Log opened at 2024-05-13 13:36:19.271942 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:36:21.906119 + +[96] Log opened at 2024-05-13 13:36:24.837021 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:36:26.092096 + +[96] Log opened at 2024-05-13 13:36:27.204052 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:36:29.063384 + +[96] Log opened at 2024-05-13 13:36:30.595818 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-05-13 13:36:32.042148 + +[101] Log opened at 2024-05-13 13:36:37.657233 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-05-13 13:36:39.046431 + +[105] Log opened at 2024-05-13 13:36:47.954627 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-05-13 13:36:50.875624 + +[102] Log opened at 2024-05-13 13:37:21.986688 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:37:26.688010 + +[103] Log opened at 2024-05-13 13:37:26.856279 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[99] Log opened at 2024-05-13 13:37:26.857661 +[95] Log opened at 2024-05-13 13:37:26.857674 +[98] Log opened at 2024-05-13 13:37:26.857746 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[82] Log opened at 2024-05-13 13:37:26.858517 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[102] Log opened at 2024-05-13 13:37:26.859281 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:37:27.885806 + +[103] Log opened at 2024-05-13 13:37:27.903534 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:37:29.062586 + +[98] Log opened at 2024-05-13 13:37:29.078327 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:37:29.383236 + +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:37:29.619201 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:37:30.062457 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:37:30.736081 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:37:30.961404 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:37:31.224743 + +[95] Log opened at 2024-05-13 13:37:31.277177 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:37:32.635460 + +[101] Log opened at 2024-05-13 13:37:55.588187 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[101] [Step Debug] <- run -i 11 +[105] Log opened at 2024-05-13 13:37:57.237448 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 11 +[106] Log opened at 2024-05-13 13:37:57.388867 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[106] [Step Debug] <- run -i 11 +[82] Log opened at 2024-05-13 13:37:57.467989 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[102] Log opened at 2024-05-13 13:37:57.567205 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 11 +[99] Log opened at 2024-05-13 13:37:57.683868 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[99] [Step Debug] -> + +[99] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[99] [Step Debug] -> + +[99] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[99] [Step Debug] -> + +[99] [Step Debug] <- run -i 11 +[103] Log opened at 2024-05-13 13:37:57.760642 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 11 +[98] Log opened at 2024-05-13 13:37:57.841220 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 11 +[95] Log opened at 2024-05-13 13:37:57.930020 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 11 +[101] [Step Debug] -> + +[101] Log closed at 2024-05-13 13:37:59.437990 + +[105] [Step Debug] -> + +[105] Log closed at 2024-05-13 13:38:00.249721 + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 13:38:01.171305 + +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 13:38:02.245091 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 13:38:03.222494 + +[102] [Step Debug] -> + +[102] Log closed at 2024-05-13 13:38:04.493922 + +[99] [Step Debug] -> + +[99] Log closed at 2024-05-13 13:38:05.486934 + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 13:38:06.661365 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 13:38:07.711481 + +[109] Log opened at 2024-05-13 13:38:15.393700 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[109] [Step Debug] -> + +[109] [Step Debug] <- run -i 11 +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] Log closed at 2024-05-13 13:38:18.823802 + +[109] Log opened at 2024-05-13 13:38:21.923930 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[109] [Step Debug] -> + +[109] [Step Debug] <- run -i 11 +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] Log closed at 2024-05-13 13:38:23.924122 + +[109] Log opened at 2024-05-13 13:38:26.036236 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 671 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[109] [Step Debug] -> + +[109] [Step Debug] <- run -i 11 +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] [Step Debug] <- stack_get -i 12 +[109] [Step Debug] -> + +[109] [Step Debug] <- eval -i 13 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWM5NTFhNmYyMWFiZDk5YmIyZjhiNTdkYmZiMjVhYjBkMjJlMmJhYzNjMzk1MTY1Mjg0NWZmYTRhNzgxOWQyMyddPSR0YXJpZmFzX2VudmlvWyRpXQ== +[109] [Step Debug] -> + +[109] [Step Debug] <- context_names -i 14 -d 0 +[109] [Step Debug] -> + +[109] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_remove -i 17 -d 1090014 +[109] [Step Debug] -> + +[109] [Step Debug] <- step_over -i 18 +[109] [Step Debug] -> + +[109] [Step Debug] <- stack_get -i 19 +[109] [Step Debug] -> + +[109] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWM5NTFhNmYyMWFiZDk5YmIyZjhiNTdkYmZiMjVhYjBkMjJlMmJhYzNjMzk1MTY1Mjg0NWZmYTRhNzgxOWQyMyddPSR0YXJpZmFzX2VudmlvWyRpXQ== +[109] [Step Debug] -> + +[109] [Step Debug] <- context_names -i 21 -d 0 +[109] [Step Debug] -> + +[109] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_remove -i 23 -d 1090013 +[109] [Step Debug] -> + +[109] [Step Debug] <- run -i 24 +[109] [Step Debug] -> + +[109] Log closed at 2024-05-13 13:39:11.889050 + +[101] Log opened at 2024-05-13 13:39:18.617514 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[101] [Step Debug] <- run -i 10 +[101] [Step Debug] -> + +[101] [Step Debug] -> + +[101] Log closed at 2024-05-13 13:39:20.422109 + +[101] Log opened at 2024-05-13 13:39:22.729498 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[101] [Step Debug] <- run -i 10 +[101] [Step Debug] -> + +[101] [Step Debug] -> + +[101] Log closed at 2024-05-13 13:39:24.274389 + +[105] Log opened at 2024-05-13 13:39:29.795506 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 10 +[105] [Step Debug] -> + +[105] [Step Debug] -> + +[105] Log closed at 2024-05-13 13:39:32.478059 + +[105] Log opened at 2024-05-13 13:39:36.969039 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[105] [Step Debug] -> + +[105] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 10 +[105] [Step Debug] -> + +[105] [Step Debug] -> + +[105] [Step Debug] <- stack_get -i 11 +[105] [Step Debug] -> + +[105] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWM5NTFhNmYyMWFiZDk5YmIyZjhiNTdkYmZiMjVhYjBkMjJlMmJhYzNjMzk1MTY1Mjg0NWZmYTRhNzgxOWQyMyddPSR0YXJpZmFzX2VudmlvWyRpXQ== +[105] [Step Debug] -> + +[105] [Step Debug] <- context_names -i 13 -d 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- property_get -i 15 -n "$lineas_servicios[\"tiradas\"]" -p 0 -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- property_get -i 16 -n "$lineas_servicios[\"precio_u\"]" -p 0 -d 0 -c 0 +[105] [Step Debug] -> + +[105] [Step Debug] <- run -i 17 +[105] [Step Debug] -> + +[105] Log closed at 2024-05-13 13:47:18.531652 + +[103] Log opened at 2024-05-13 13:47:41.171603 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 10 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 13:47:46.668473 + +[103] Log opened at 2024-05-13 13:47:50.044143 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 10 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 13:47:51.324701 + +[103] Log opened at 2024-05-13 13:47:53.783725 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 10 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 11 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWM5NTFhNmYyMWFiZDk5YmIyZjhiNTdkYmZiMjVhYjBkMjJlMmJhYzNjMzk1MTY1Mjg0NWZmYTRhNzgxOWQyMyddPSR0YXJpZmFzX2VudmlvWyRpXQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 13 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 15 -n "$this->calcular_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 16 -n "$lineas_servicios[\"errors\"]" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 17 -n "$papel_generico" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 18 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 19 -n "$reqData" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 21 -n "$lineas_servicios[\"errors\"]" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 22 -n "$reqData[\"datos_libro\"]" -p 0 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 23 -n "$reqData[\"datos_libro\"][\"tamanio\"]" -p 0 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 24 -n "$reqData[\"datos_libro\"][\"tirada\"]" -p 0 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 25 -n "$reqData[\"direcciones\"]" -p 0 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 26 -n "$reqData" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 28 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 13:49:35.520707 + +[106] Log opened at 2024-05-13 13:50:04.412873 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[106] [Step Debug] <- run -i 11 +[106] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 12 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 13 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 14 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_into -i 16 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 17 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 18 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 19 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 21 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 22 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 23 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 24 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 26 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 27 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 28 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 29 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 31 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 32 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 33 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 34 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 35 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 36 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 37 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 38 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 39 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 40 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 41 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 42 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 43 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 45 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 46 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 47 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 48 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 49 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 50 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 51 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 52 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 54 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 55 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 56 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 57 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 58 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 59 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 60 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 61 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 62 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 64 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 65 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 66 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 67 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 68 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 69 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 70 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 71 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 72 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 73 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 74 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 75 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 76 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 77 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 78 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 79 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 80 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 81 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 83 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 84 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 85 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 86 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 87 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 88 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 89 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 90 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 91 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 92 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 93 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 94 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 95 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 96 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 97 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 98 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 99 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 100 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 101 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 102 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 103 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 104 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 105 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 106 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 108 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 109 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 110 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 111 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 112 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- step_over -i 113 +[106] [Step Debug] -> + +[106] [Step Debug] <- stack_get -i 114 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 115 -n "$reqData" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_names -i 116 -d 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- context_get -i 117 -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 118 -n "$datos_entrada" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 119 -n "$datos_entrada" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- property_get -i 120 -n "$datos_entrada" -d 0 -c 0 +[106] [Step Debug] -> + +[106] [Step Debug] <- stop -i 121 +[106] [Step Debug] -> + +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 13:51:41.667713 + +[82] Log opened at 2024-05-13 13:55:08.740404 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:55:17.903960 + +[82] Log opened at 2024-05-13 13:55:18.057242 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] Log opened at 2024-05-13 13:55:18.062952 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] Log opened at 2024-05-13 13:55:18.065090 +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] Log opened at 2024-05-13 13:55:18.066351 +[95] Log opened at 2024-05-13 13:55:18.066483 +[109] Log opened at 2024-05-13 13:55:18.066911 +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:55:18.768894 + +[82] Log opened at 2024-05-13 13:55:18.778932 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:55:20.220202 + +[99] Log opened at 2024-05-13 13:55:20.228112 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:55:21.132582 + +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-05-13 13:55:21.806856 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:55:22.439220 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:55:23.047722 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:55:23.244952 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:55:23.445106 + +[109] Log opened at 2024-05-13 13:55:23.479194 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[109] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[109] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[109] Log closed at 2024-05-13 13:55:24.857646 + +[105] Log opened at 2024-05-13 13:55:31.359966 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log opened at 2024-05-13 13:55:32.890531 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log opened at 2024-05-13 13:55:33.002001 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log opened at 2024-05-13 13:55:33.158774 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log opened at 2024-05-13 13:55:33.251049 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-05-13 13:55:33.346181 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log opened at 2024-05-13 13:55:33.550791 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-05-13 13:55:33.642597 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log opened at 2024-05-13 13:55:33.752759 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] Log closed at 2024-05-13 13:55:34.462610 + +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:55:35.446095 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:55:35.893873 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:55:36.738484 + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 13:55:37.618393 + +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:55:38.084737 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:55:38.517860 + +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 13:55:39.350233 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:55:39.716197 + +[112] Log opened at 2024-05-13 13:55:49.186591 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 13:55:51.747389 + +[112] Log opened at 2024-05-13 13:55:55.862486 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 13:55:57.446515 + +[112] Log opened at 2024-05-13 13:55:58.813460 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 13:56:00.579800 + +[102] Log opened at 2024-05-13 13:56:40.466116 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[95] Log opened at 2024-05-13 13:56:40.468262 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] Log opened at 2024-05-13 13:56:40.469345 +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log opened at 2024-05-13 13:56:40.476989 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-05-13 13:56:40.481658 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] Log opened at 2024-05-13 13:56:40.483198 +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:56:41.957387 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:56:42.478559 + +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-05-13 13:56:42.786419 + +[95] Log opened at 2024-05-13 13:56:42.802482 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:56:43.314504 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:56:43.649686 + +[82] Log opened at 2024-05-13 13:56:43.666889 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 13:56:44.185991 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:56:44.657322 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:56:45.104475 + +[95] Log opened at 2024-05-13 13:56:49.427605 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:56:52.493566 + +[95] Log opened at 2024-05-13 13:56:52.585724 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] Log opened at 2024-05-13 13:56:52.588637 +[110] Log opened at 2024-05-13 13:56:52.588665 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[99] Log opened at 2024-05-13 13:56:52.589049 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[113] Log opened at 2024-05-13 13:56:52.589517 +[114] Log opened at 2024-05-13 13:56:52.589500 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[114] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[114] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[114] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:56:53.047635 + +[95] Log opened at 2024-05-13 13:56:53.056099 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 13:56:54.246123 + +[110] Log opened at 2024-05-13 13:56:54.253601 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:56:54.412171 + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 13:56:54.627193 + +[114] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[114] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[114] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[114] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[114] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[114] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[114] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[114] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[114] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[114] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[114] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-05-13 13:56:55.200014 + +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 13:56:55.789361 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:56:55.979917 + +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 13:56:56.157627 + +[114] Log opened at 2024-05-13 13:56:56.205369 +[114] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.114' +[114] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[114] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[114] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[114] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[114] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[114] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[114] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[114] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[114] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[114] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[114] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[114] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[114] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[114] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[114] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[114] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[114] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[114] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[114] Log closed at 2024-05-13 13:56:57.364866 + +[98] Log opened at 2024-05-13 13:57:18.035360 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log opened at 2024-05-13 13:57:19.381839 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log opened at 2024-05-13 13:57:19.472556 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:57:19.580799 + +[82] Log opened at 2024-05-13 13:57:19.625119 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log opened at 2024-05-13 13:57:19.751981 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log opened at 2024-05-13 13:57:19.830119 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log opened at 2024-05-13 13:57:20.065433 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-05-13 13:57:20.173298 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 13:57:21.305799 + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 13:57:21.743314 + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 13:57:22.124064 + +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 13:57:22.552041 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 13:57:23.318354 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-05-13 13:57:24.123205 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 13:57:24.861870 + +[110] Log opened at 2024-05-13 13:57:30.199999 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 13:57:31.432656 + +[110] Log opened at 2024-05-13 13:57:34.846438 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 13:57:36.625936 + +[110] Log opened at 2024-05-13 13:57:38.051122 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 13:57:39.695415 + +[98] Log opened at 2024-05-13 13:57:44.956039 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:57:47.086962 + +[98] Log opened at 2024-05-13 13:57:51.749655 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-05-13 13:57:53.268836 + +[115] Log opened at 2024-05-13 13:58:01.599513 +[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' +[115] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[115] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[115] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[115] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[115] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[115] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[115] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 869 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[115] [Step Debug] -> + +[115] [Step Debug] <- run -i 12 +[115] [Step Debug] -> + +[115] [Step Debug] -> + +[115] [Step Debug] -> + +[115] [Step Debug] -> + +[115] [Step Debug] <- stack_get -i 13 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 14 -n "$reqData" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_names -i 15 -d 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- step_over -i 17 +[115] [Step Debug] -> + +[115] [Step Debug] <- stack_get -i 18 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 19 -n "$reqData" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_names -i 20 -d 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 22 -n "$lineas_servicios[\"tiradas\"]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 23 -n "$lineas_servicios[\"precio_u\"]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 24 -n "$lineas_servicios[\"interior\"]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 25 -n "$lineas_servicios[\"interior\"][0]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 26 -n "$this" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_names -i 27 -d 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 28 -n "$lineas_servicios" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 30 -n "$lineas_servicios[\"interior\"]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 31 -n "$lineas_servicios[\"errors\"]" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_names -i 32 -d 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 33 -n "$lineas_servicios" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 34 -n "$datos_presupuesto" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 36 -n "$lineas_servicios[\"interior\"]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- run -i 37 +[115] [Step Debug] -> + +[115] [Step Debug] <- stack_get -i 38 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 39 -n "$lineas_servicios" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 40 -n "$datos_presupuesto" -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_names -i 41 -d 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- property_get -i 43 -n "$lineas_servicios[\"interior\"]" -p 0 -d 0 -c 0 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_remove -i 44 -d 1150003 +[115] [Step Debug] -> + +[115] [Step Debug] <- run -i 45 +[115] [Step Debug] -> + +[115] Log closed at 2024-05-13 14:00:40.129515 + +[115] Log opened at 2024-05-13 14:00:43.625337 +[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' +[115] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[115] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[115] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[115] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[115] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[115] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[115] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[115] [Step Debug] -> + +[115] [Step Debug] <- run -i 11 +[115] [Step Debug] -> + +[115] [Step Debug] -> + +[115] [Step Debug] -> + +[115] Log closed at 2024-05-13 14:00:47.171636 + +[115] Log opened at 2024-05-13 14:00:47.302687 +[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' +[115] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[115] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[115] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] Log opened at 2024-05-13 14:00:47.304848 +[115] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[106] Log opened at 2024-05-13 14:00:47.304865 +[103] Log opened at 2024-05-13 14:00:47.304909 +[82] Log opened at 2024-05-13 14:00:47.304895 +[115] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[115] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] Log opened at 2024-05-13 14:00:47.306106 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[115] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[115] [Step Debug] -> + +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[115] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[115] [Step Debug] -> + +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] -> + +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[112] [Step Debug] -> + +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[115] [Step Debug] -> + +[113] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[82] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[115] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[106] [Step Debug] -> + +[82] [Step Debug] -> + +[115] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[113] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[103] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[113] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[106] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[82] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[112] [Step Debug] -> + +[113] [Step Debug] -> + +[103] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[115] [Step Debug] -> + +[112] [Step Debug] -> + +[82] [Step Debug] -> + +[106] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[115] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[106] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[113] [Step Debug] -> + +[115] [Step Debug] -> + +[82] [Step Debug] -> + +[112] [Step Debug] -> + +[106] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[115] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[106] [Step Debug] -> + +[82] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[103] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[112] [Step Debug] -> + +[113] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[115] [Step Debug] -> + +[106] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[115] [Step Debug] -> + +[112] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[115] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[112] [Step Debug] -> + +[113] [Step Debug] -> + +[103] [Step Debug] -> + +[106] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[115] [Step Debug] -> + +[82] [Step Debug] -> + +[106] [Step Debug] -> + +[103] [Step Debug] -> + +[112] [Step Debug] -> + +[115] [Step Debug] <- run -i 13 +[106] [Step Debug] <- run -i 13 +[103] [Step Debug] <- run -i 13 +[112] [Step Debug] <- run -i 13 +[113] [Step Debug] <- run -i 13 +[82] [Step Debug] <- run -i 13 +[115] [Step Debug] -> + +[115] Log closed at 2024-05-13 14:00:48.101851 + +[115] Log opened at 2024-05-13 14:00:48.111300 +[115] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.115' +[115] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[115] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[115] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[115] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[115] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[115] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[115] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[115] [Step Debug] -> + +[115] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[115] [Step Debug] -> + +[115] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[115] [Step Debug] -> + +[115] [Step Debug] <- run -i 11 +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:00:49.637119 + +[113] Log opened at 2024-05-13 14:00:49.645627 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 11 +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 14:00:50.241046 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 14:00:50.846307 + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 14:00:51.440797 + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:00:52.415476 + +[115] [Step Debug] -> + +[115] Log closed at 2024-05-13 14:00:52.635901 + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:00:52.830499 + +[82] Log opened at 2024-05-13 14:00:52.883249 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 14:00:53.925272 + +[95] Log opened at 2024-05-13 14:00:59.605258 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 11 +[110] Log opened at 2024-05-13 14:01:01.214497 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 11 +[98] Log opened at 2024-05-13 14:01:01.437726 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 11 +[116] Log opened at 2024-05-13 14:01:01.564546 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[116] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[116] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[116] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[116] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[116] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[116] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[116] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] -> + +[116] [Step Debug] <- run -i 11 +[106] Log opened at 2024-05-13 14:01:01.750954 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[106] [Step Debug] <- run -i 11 +[112] Log opened at 2024-05-13 14:01:01.863771 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 11 +[103] Log opened at 2024-05-13 14:01:01.958681 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 11 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 14:01:02.507785 + +[110] [Step Debug] -> + +[110] Log closed at 2024-05-13 14:01:04.018314 + +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 14:01:04.484958 + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 14:01:04.960535 + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:01:05.422229 + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:01:06.327711 + +[116] [Step Debug] -> + +[116] Log closed at 2024-05-13 14:01:07.234996 + +[113] Log opened at 2024-05-13 14:01:16.253461 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 11 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:01:17.813661 + +[113] Log opened at 2024-05-13 14:01:21.728413 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 11 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:01:22.926214 + +[113] Log opened at 2024-05-13 14:01:24.101351 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 11 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 12 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 13 -n "$lineas_servicios" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 14 -n "$datos_presupuesto" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 15 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 17 +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:01:30.653157 + +[82] Log opened at 2024-05-13 14:02:30.469777 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[117] Log opened at 2024-05-13 14:02:30.472552 +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] Log opened at 2024-05-13 14:02:30.476352 +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] Log opened at 2024-05-13 14:02:30.481926 +[82] [Step Debug] -> + +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[82] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] -> + +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] -> + +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[106] Log opened at 2024-05-13 14:02:30.487806 +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[95] [Step Debug] -> + +[112] Log opened at 2024-05-13 14:02:30.488555 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[110] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[110] [Step Debug] -> + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] -> + +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[95] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[112] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[106] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[112] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[82] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[112] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[106] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[110] [Step Debug] -> + +[112] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[110] [Step Debug] -> + +[112] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[112] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[112] [Step Debug] -> + +[110] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[106] [Step Debug] -> + +[110] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[106] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[112] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[106] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[106] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[110] [Step Debug] -> + +[112] [Step Debug] -> + +[106] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] -> + +[110] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[110] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] -> + +[106] [Step Debug] -> + +[110] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[110] [Step Debug] <- run -i 13 +[82] [Step Debug] <- run -i 11 +[117] [Step Debug] <- run -i 11 +[95] [Step Debug] <- run -i 11 +[112] [Step Debug] <- run -i 13 +[106] [Step Debug] <- run -i 13 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 14 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 15 -n "$lineas_servicios" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 17 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 19 -n "$sobreCubierta" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- step_into -i 20 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 21 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 22 -n "$lineas_servicios" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 23 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 24 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 27 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 28 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 29 -n "$lineas_servicios" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 30 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 31 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- step_over -i 33 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 34 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 35 -n "$lineas_servicios" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 36 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 37 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 39 -n "$datos_guardas" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 40 -n "$datos_guardas" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 41 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 42 -n "$datos_guardas" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 43 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 45 -n "$datos_guardas" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 46 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- eval -i 47 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 48 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 49 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- stop -i 51 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 14:03:28.721742 + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[95] [Step Debug] -> + +[95] [Step Debug] <- stop -i 13 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 14:03:28.930388 + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[106] [Step Debug] -> + +[106] [Step Debug] <- stop -i 15 +[106] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] -> + +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 14:03:29.055265 + +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[110] [Step Debug] -> + +[110] [Step Debug] <- stop -i 15 +[110] [Step Debug] -> + +[110] [Step Debug] -> + +[110] [Step Debug] -> + +[110] [Step Debug] -> + +[110] Log closed at 2024-05-13 14:03:29.202741 + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] -> + +[82] [Step Debug] <- stop -i 13 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 14:03:29.329076 + +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[117] [Step Debug] -> + +[117] [Step Debug] <- stop -i 13 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 14:03:29.448339 + +[112] Log opened at 2024-05-13 14:03:30.744831 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 12 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 13 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 14 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 15 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 16 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 17 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 18 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 19 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 20 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- stop -i 21 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 14:03:53.028916 + +[98] Log opened at 2024-05-13 14:03:53.211824 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 12 +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:03:54.543547 + +[98] Log opened at 2024-05-13 14:03:54.736411 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 12 +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:03:58.839662 + +[98] Log opened at 2024-05-13 14:03:58.944973 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[116] Log opened at 2024-05-13 14:03:58.949863 +[113] Log opened at 2024-05-13 14:03:58.950276 +[95] Log opened at 2024-05-13 14:03:58.950626 +[103] Log opened at 2024-05-13 14:03:58.950140 +[116] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.116' +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[118] Log opened at 2024-05-13 14:03:58.951125 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[116] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[116] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[116] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] -> + +[116] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[116] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[116] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[116] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[116] [Step Debug] -> + +[103] [Step Debug] -> + +[118] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[116] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[95] [Step Debug] -> + +[116] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[116] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[116] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[118] [Step Debug] -> + +[103] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[116] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[113] [Step Debug] -> + +[116] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[116] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[116] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[98] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[116] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] -> + +[118] [Step Debug] -> + +[98] [Step Debug] -> + +[116] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[116] [Step Debug] -> + +[113] [Step Debug] -> + +[95] [Step Debug] -> + +[118] [Step Debug] -> + +[98] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[116] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[98] [Step Debug] -> + +[103] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[116] [Step Debug] -> + +[118] [Step Debug] -> + +[95] [Step Debug] -> + +[98] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[116] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[116] [Step Debug] -> + +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[98] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[116] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[116] [Step Debug] -> + +[113] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[116] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[118] [Step Debug] -> + +[116] [Step Debug] -> + +[113] [Step Debug] -> + +[103] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[116] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[116] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[103] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[118] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[98] [Step Debug] <- run -i 12 +[118] [Step Debug] <- run -i 12 +[103] [Step Debug] <- run -i 12 +[116] [Step Debug] <- run -i 12 +[113] [Step Debug] <- run -i 12 +[95] [Step Debug] <- run -i 12 +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:03:59.618560 + +[98] Log opened at 2024-05-13 14:03:59.631483 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:04:01.120020 + +[103] Log opened at 2024-05-13 14:04:01.128435 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 14:04:01.717178 + +[116] [Step Debug] -> + +[116] Log closed at 2024-05-13 14:04:02.599364 + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:03.155863 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 14:04:03.697885 + +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:04:03.889671 + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:04:04.084630 + +[98] Log opened at 2024-05-13 14:04:04.113738 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 12 +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:04:05.367950 + +[98] Log opened at 2024-05-13 14:04:07.314083 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[98] [Step Debug] -> + +[98] [Step Debug] <- run -i 12 +[106] Log opened at 2024-05-13 14:04:09.535750 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[106] [Step Debug] <- run -i 12 +[110] Log opened at 2024-05-13 14:04:09.722553 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 12 +[82] Log opened at 2024-05-13 14:04:09.790223 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[117] Log opened at 2024-05-13 14:04:09.986995 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[112] Log opened at 2024-05-13 14:04:10.073772 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 12 +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:04:10.158282 + +[118] Log opened at 2024-05-13 14:04:10.179205 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 14:04:12.012065 + +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 14:04:12.787525 + +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 14:04:13.438092 + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 14:04:13.909469 + +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 14:04:14.346458 + +[110] [Step Debug] -> + +[110] Log closed at 2024-05-13 14:04:15.498408 + +[113] Log opened at 2024-05-13 14:04:25.031722 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:26.645170 + +[113] Log opened at 2024-05-13 14:04:29.943831 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:31.502242 + +[113] Log opened at 2024-05-13 14:04:32.725748 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 13 +[113] [Step Debug] -> + +[113] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 15 -n "$datos_presupuesto" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 16 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 18 +[113] [Step Debug] -> + +[113] [Step Debug] <- stack_get -i 19 +[113] [Step Debug] -> + +[113] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 21 -n "$datos_presupuesto" -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- property_get -i 22 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_names -i 23 -d 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[113] [Step Debug] -> + +[113] [Step Debug] <- stop -i 25 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:46.896197 + +[113] Log opened at 2024-05-13 14:04:49.084600 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:52.402851 + +[113] Log opened at 2024-05-13 14:04:52.573794 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log opened at 2024-05-13 14:04:52.578003 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] Log opened at 2024-05-13 14:04:52.580476 +[117] Log opened at 2024-05-13 14:04:52.580333 +[95] Log opened at 2024-05-13 14:04:52.580538 +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] Log opened at 2024-05-13 14:04:52.580351 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] -> + +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[98] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] -> + +[103] [Step Debug] -> + +[117] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[98] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[113] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[103] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[98] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[98] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[98] [Step Debug] -> + +[95] [Step Debug] -> + +[103] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[98] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[113] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[95] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] -> + +[82] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[117] [Step Debug] -> + +[113] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[98] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] -> + +[95] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[103] [Step Debug] -> + +[113] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[98] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[98] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[98] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[113] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[103] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[103] [Step Debug] -> + +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[98] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[113] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[98] [Step Debug] -> + +[98] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] -> + +[113] [Step Debug] -> + +[98] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[117] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[82] [Step Debug] -> + +[117] [Step Debug] -> + +[98] [Step Debug] <- run -i 15 +[95] [Step Debug] <- run -i 14 +[82] [Step Debug] <- run -i 15 +[113] [Step Debug] <- run -i 15 +[117] [Step Debug] <- run -i 15 +[103] [Step Debug] <- run -i 14 +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:53.309727 + +[113] Log opened at 2024-05-13 14:04:53.323497 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 14:04:54.709394 + +[95] Log opened at 2024-05-13 14:04:54.720323 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[98] [Step Debug] -> + +[98] Log closed at 2024-05-13 14:04:54.934437 + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:04:55.122020 + +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 14:04:55.340329 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 14:04:55.559815 + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:04:55.812615 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 14:04:56.143304 + +[117] Log opened at 2024-05-13 14:04:56.181454 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 14:04:57.345420 + +[117] Log opened at 2024-05-13 14:04:58.854641 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[95] Log opened at 2024-05-13 14:05:00.060339 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[82] Log opened at 2024-05-13 14:05:00.171966 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[113] Log opened at 2024-05-13 14:05:00.343089 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[113] [Step Debug] -> + +[113] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[113] [Step Debug] -> + +[113] [Step Debug] <- run -i 12 +[106] Log opened at 2024-05-13 14:05:00.454434 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[106] [Step Debug] <- run -i 12 +[112] Log opened at 2024-05-13 14:05:00.570600 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 12 +[110] Log opened at 2024-05-13 14:05:00.666376 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[110] [Step Debug] <- run -i 12 +[118] Log opened at 2024-05-13 14:05:00.835594 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 14:05:02.020660 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 14:05:02.469876 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 14:05:02.799044 + +[113] [Step Debug] -> + +[113] Log closed at 2024-05-13 14:05:03.191940 + +[106] [Step Debug] -> + +[106] Log closed at 2024-05-13 14:05:03.566353 + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 14:05:03.940411 + +[110] [Step Debug] -> + +[110] Log closed at 2024-05-13 14:05:04.333756 + +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 14:05:04.705799 + +[103] Log opened at 2024-05-13 14:05:11.988751 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:05:13.608699 + +[103] Log opened at 2024-05-13 14:05:16.320824 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:05:17.938121 + +[103] Log opened at 2024-05-13 14:05:19.021719 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 13 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 15 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 16 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 18 +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 19 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 21 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 22 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 23 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- step_over -i 25 +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 26 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 28 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 29 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 30 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 32 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:05:27.163394 + +[103] Log opened at 2024-05-13 14:05:30.974413 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:05:32.491083 + +[103] Log opened at 2024-05-13 14:05:37.030174 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:05:38.594282 + +[103] Log opened at 2024-05-13 14:05:42.440160 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 866 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1110 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 12 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 13 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 15 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 16 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- step_over -i 18 +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 19 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 21 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 22 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 23 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 25 +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 26 +[103] [Step Debug] -> + +[103] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 28 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 29 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 31 -n "$lineas_servicios[\"errors\"]" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 32 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 14:06:08.144937 + +[82] Log opened at 2024-05-13 18:00:44.763992 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:00:46.879031 + +[113] Log opened at 2024-05-13 18:00:46.906386 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 18:00:49.688712 + +[113] Log opened at 2024-05-13 18:00:49.781428 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 18:00:50.492692 + +[118] Log opened at 2024-05-13 18:00:50.654853 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 18:00:52.264128 + +[118] Log opened at 2024-05-13 18:00:53.209989 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 18:00:56.783941 + +[118] Log opened at 2024-05-13 18:00:56.802799 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 18:00:59.912341 + +[118] Log opened at 2024-05-13 18:01:00.031011 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 18:01:00.773773 + +[120] Log opened at 2024-05-13 18:01:00.937030 +[120] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.120' +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log opened at 2024-05-13 18:01:01.067979 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] Log closed at 2024-05-13 18:01:02.257078 + +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log closed at 2024-05-13 18:01:03.631477 + +[120] Log opened at 2024-05-13 18:01:05.612196 +[120] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.120' +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] Log closed at 2024-05-13 18:01:08.268481 + +[120] Log opened at 2024-05-13 18:01:11.179326 +[120] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.120' +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] Log closed at 2024-05-13 18:01:15.588036 + +[120] Log opened at 2024-05-13 18:01:15.701867 +[120] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.120' +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-05-13 18:01:15.706614 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[106] Log opened at 2024-05-13 18:01:15.709983 +[113] Log opened at 2024-05-13 18:01:15.709959 +[112] Log opened at 2024-05-13 18:01:15.709989 +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log opened at 2024-05-13 18:01:15.711686 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] Log closed at 2024-05-13 18:01:16.281565 + +[120] Log opened at 2024-05-13 18:01:16.292411 +[120] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.120' +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 18:01:17.349054 + +[113] Log opened at 2024-05-13 18:01:17.359391 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:01:17.935580 + +[82] Log opened at 2024-05-13 18:01:17.944592 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 18:01:18.509260 + +[110] Log opened at 2024-05-13 18:01:18.516517 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 18:01:19.129573 + +[112] Log opened at 2024-05-13 18:01:19.137494 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] Log closed at 2024-05-13 18:01:19.356958 + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 18:01:20.314072 + +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 18:01:20.527335 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:01:20.728906 + +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[110] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[110] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[110] Log closed at 2024-05-13 18:01:20.948139 + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 18:01:21.146192 + +[120] Log opened at 2024-05-13 18:01:21.196944 +[120] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.120' +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log opened at 2024-05-13 18:01:21.268821 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log opened at 2024-05-13 18:01:21.286848 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] Log opened at 2024-05-13 18:01:21.290198 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[120] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[120] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[120] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[120] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[120] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[120] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[120] Log closed at 2024-05-13 18:01:22.464611 + +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 18:01:22.994723 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:01:23.543041 + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 18:01:24.037881 + +[82] Log opened at 2024-05-13 18:01:28.009921 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:01:29.596240 + +[82] Log opened at 2024-05-13 18:01:31.321856 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:01:32.964213 + +[82] Log opened at 2024-05-13 18:01:33.806054 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] Log opened at 2024-05-13 18:01:33.808126 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] Log opened at 2024-05-13 18:01:33.808008 +[103] Log opened at 2024-05-13 18:01:33.808111 +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] Log opened at 2024-05-13 18:01:33.811237 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] Log opened at 2024-05-13 18:01:33.813022 +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] Log opened at 2024-05-13 18:01:33.813179 +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 18:01:35.680706 + +[106] Log opened at 2024-05-13 18:01:35.703442 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 18:01:36.011732 + +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 18:01:36.344512 + +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log closed at 2024-05-13 18:01:36.664655 + +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] Log closed at 2024-05-13 18:01:37.486200 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 18:01:38.227735 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 18:01:39.023255 + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 18:01:39.434528 + +[113] Log opened at 2024-05-13 19:26:45.716135 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:26:47.643180 + +[113] Log opened at 2024-05-13 19:26:47.665158 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:26:50.039506 + +[113] Log opened at 2024-05-13 19:26:50.299942 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:26:51.012902 + +[113] Log opened at 2024-05-13 19:26:51.228455 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:26:52.220968 + +[113] Log opened at 2024-05-13 19:26:56.629301 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:26:59.886876 + +[113] Log opened at 2024-05-13 19:26:59.912662 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:27:03.658189 + +[113] Log opened at 2024-05-13 19:27:03.855790 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-05-13 19:27:03.860920 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] Log opened at 2024-05-13 19:27:03.863037 +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] Log opened at 2024-05-13 19:27:03.862339 +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[103] Log opened at 2024-05-13 19:27:03.863507 +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[106] Log opened at 2024-05-13 19:27:03.863141 +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:27:04.550101 + +[113] Log opened at 2024-05-13 19:27:04.560519 +[113] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.113' +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:27:06.099147 + +[82] Log opened at 2024-05-13 19:27:06.107501 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 19:27:06.682560 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 19:27:07.941132 + +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] Log closed at 2024-05-13 19:27:08.632936 + +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[113] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[113] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[113] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[113] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[113] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[113] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[113] Log closed at 2024-05-13 19:27:08.846187 + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-05-13 19:27:09.500130 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:27:09.727133 + +[95] Log opened at 2024-05-13 19:27:09.760518 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 19:27:10.750870 + +[95] Log opened at 2024-05-13 19:27:15.263802 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log opened at 2024-05-13 19:27:16.842732 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log opened at 2024-05-13 19:27:16.920565 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log opened at 2024-05-13 19:27:17.109703 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] Log opened at 2024-05-13 19:27:17.236471 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] Log opened at 2024-05-13 19:27:17.315479 +[123] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.123' +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log opened at 2024-05-13 19:27:17.500038 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] Log opened at 2024-05-13 19:27:17.609925 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 19:27:18.373820 + +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 19:27:20.019381 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 19:27:20.483676 + +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log closed at 2024-05-13 19:27:21.345695 + +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] Log closed at 2024-05-13 19:27:21.804250 + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] Log closed at 2024-05-13 19:27:22.729218 + +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] Log closed at 2024-05-13 19:27:23.623461 + +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] Log closed at 2024-05-13 19:27:24.530532 + +[82] Log opened at 2024-05-13 19:27:34.472891 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:27:36.174001 + +[82] Log opened at 2024-05-13 19:27:39.746182 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:27:41.323854 + +[82] Log opened at 2024-05-13 19:27:42.333989 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:27:44.231056 + +[82] Log opened at 2024-05-13 19:27:44.875223 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:27:46.503656 + +[124] Log opened at 2024-05-13 19:27:51.639101 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] Log closed at 2024-05-13 19:27:54.282561 + +[124] Log opened at 2024-05-13 19:27:58.616053 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] Log closed at 2024-05-13 19:28:00.261470 + +[95] Log opened at 2024-05-13 19:28:07.211609 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 870 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 13 +[95] [Step Debug] -> + +[95] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 15 -n "$datos_presupuesto" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_names -i 16 -d 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1022 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 19 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 19:28:30.777327 + +[118] Log opened at 2024-05-13 19:28:33.648735 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 870 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1022 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 13 +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 14 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 17 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 18 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- step_over -i 20 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 21 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 23 -n "$datos_presupuesto" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 24 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 25 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- step_over -i 27 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 28 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjk3OWY4YzJjOWFhMjkxNDRiZDI1NTY5MjQ4NTAyZDM5ZGQzM2VlYmViODYzMGI5MWU2MGM4NjQyOWQyY2IyOSddPWNvdW50KCRkYXRvc19ndWFyZGFzKQ== +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 30 -n "$datos_presupuesto" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 31 -n "$DEVSENSE_EVAL_CACHE['6979f8c2c9aa29144bd25569248502d39dd33eebeb8630b91e60c86429d2cb29']" -c 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 32 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 34 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNTU2MDNkMWM4ZjlhOWZhYTIyODlmZDQzMGRlMjY2MDRhODI5YzBmNTVhODY4ODM3NDQ1MzdhNWU4YjNmZjc5NCddPVByZXN1cHVlc3RvQ2xpZW50ZVNlcnZpY2U6Om9idGVuZXJJbnRlcmlvcg== +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 35 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 36 -n "$interior" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 37 -n "$datos_presupuesto" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 39 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 40 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 41 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 42 -n "$interior" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 43 -n "$datos_presupuesto" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 44 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 46 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:29:06.651766 + +[103] Log opened at 2024-05-13 19:29:17.706059 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 870 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1022 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 13 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 14 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 15 -n "$interior" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 17 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_remove -i 20 -d 1030100 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1022 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_remove -i 22 -d 1030107 +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 23 +[103] [Step Debug] -> + +[103] [Step Debug] <- stack_get -i 24 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 25 -n "$interior" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- property_get -i 26 -n "$datos_presupuesto" -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_names -i 27 -d 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[103] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_remove -i 30 -d 1030099 +[103] [Step Debug] -> + +[103] [Step Debug] <- run -i 31 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 19:29:36.990501 + +[117] Log opened at 2024-05-13 19:29:42.019738 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 13 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 14 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 15 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 17 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_into -i 19 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 20 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 21 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 22 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 23 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 25 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 26 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 27 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 28 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 29 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 30 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 31 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 32 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 33 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 35 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 36 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 37 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 38 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 39 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 41 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 42 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 43 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 44 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 45 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 47 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 48 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 49 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 50 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 51 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 53 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 54 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 55 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 56 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 57 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 58 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 59 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 60 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 61 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 62 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 63 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 64 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 65 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 66 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 67 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 68 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 69 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 71 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 72 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 73 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 74 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 75 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 76 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 77 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 78 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 79 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 80 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 81 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 82 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 83 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 84 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 85 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 86 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 87 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 88 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 89 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 90 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 91 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 92 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 93 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 94 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 95 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 96 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 97 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 98 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 99 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 101 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 102 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 103 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 104 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 105 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 106 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 107 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 108 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 109 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 110 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 111 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 112 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 113 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 114 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 115 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 116 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 117 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 118 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 119 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 120 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 121 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 122 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 123 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 124 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 125 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 126 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 127 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 128 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 129 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 130 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 131 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 132 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 133 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 134 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 135 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 136 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 137 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 138 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 139 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 140 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 141 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 142 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 143 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 144 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 145 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 146 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 147 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 148 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 149 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 150 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 151 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 152 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 153 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 154 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 155 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 156 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 157 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 158 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 159 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 160 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 161 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 162 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 163 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 164 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 165 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 166 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 167 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 168 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 169 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 170 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 171 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 172 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 173 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 174 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 175 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 176 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 177 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 178 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 179 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 180 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 181 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 182 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 183 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 184 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 185 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 186 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 187 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 188 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 189 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 190 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 191 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 192 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 193 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 194 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 195 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 196 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 197 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 198 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 199 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 200 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 201 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 202 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 203 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 204 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 205 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 206 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 207 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 208 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 209 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 210 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 211 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 212 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 213 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 214 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 215 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 216 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 217 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 218 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 219 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 220 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 221 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 222 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 223 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 224 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 225 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 226 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 227 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 228 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 229 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 230 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 231 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 232 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 233 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 234 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 235 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 236 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 237 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 238 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 239 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 240 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 241 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 242 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 243 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 244 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 245 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 246 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 247 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 248 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 249 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 250 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 251 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 252 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 253 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 254 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 255 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 256 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 257 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 258 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 259 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 260 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 261 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 262 -n "$input_data[\"datosPedido\"]" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 263 -n "$input_data[\"papel_generico\"]" -p 0 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- step_over -i 264 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 265 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 266 -n "$interior" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 267 -n "$datos_presupuesto" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 268 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 269 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 270 -n "$input_data[\"datosPedido\"]" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 271 -n "$input_data[\"papel_generico\"]" -p 0 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- eval -i 272 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNTU2MDNkMWM4ZjlhOWZhYTIyODlmZDQzMGRlMjY2MDRhODI5YzBmNTVhODY4ODM3NDQ1MzdhNWU4YjNmZjc5NCddPVByZXN1cHVlc3RvQ2xpZW50ZVNlcnZpY2U6Om9idGVuZXJJbnRlcmlvcg== +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 273 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 19:31:32.248597 + +[112] Log opened at 2024-05-13 19:33:15.089273 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 13 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 14 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 15 -n "$interior" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 17 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 19 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 20 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 21 -n "$interior" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 22 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 23 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 25 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 26 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 27 -n "$interior" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 28 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 29 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 31 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 32 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 33 -n "$interior" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 34 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 35 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 37 +[112] [Step Debug] -> + +[112] [Step Debug] <- stack_get -i 38 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 39 -n "$interior" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- property_get -i 40 -n "$datos_presupuesto" -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_names -i 41 -d 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 43 +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 19:33:28.364657 + +[112] Log opened at 2024-05-13 19:33:32.239768 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[112] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 13 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] Log closed at 2024-05-13 19:33:33.820582 + +[121] Log opened at 2024-05-13 19:33:40.496611 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 13 +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 14 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 15 -n "$interior" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 16 -n "$datos_presupuesto" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 17 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- step_over -i 19 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 20 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 21 -n "$interior" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 22 -n "$datos_presupuesto" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 23 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- step_over -i 25 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 26 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 27 -n "$interior" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 28 -n "$datos_presupuesto" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 29 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 31 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 32 -n "$interior" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 33 -n "$datos_pedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 35 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 36 -n "$interior" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 37 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 39 -n "$excluirRotativa" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 40 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- eval -i 41 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNTU2MDNkMWM4ZjlhOWZhYTIyODlmZDQzMGRlMjY2MDRhODI5YzBmNTVhODY4ODM3NDQ1MzdhNWU4YjNmZjc5NCddPVByZXN1cHVlc3RvQ2xpZW50ZVNlcnZpY2U6Om9idGVuZXJJbnRlcmlvcg== +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 42 -n "$papel_generico" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 43 -n "$tipo_impresion_id" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 44 -n "$isColor" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 45 -n "$isHq" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 46 -n "$cliente_id" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 47 -n "$paginas_color" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 48 -n "$excluirRotativa" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 49 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:35:47.452082 + +[123] Log opened at 2024-05-13 19:35:52.906684 +[123] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.123' +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 13 +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 14 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 15 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 16 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 17 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 19 -n "$csrfTokenName" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 20 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 21 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 22 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 23 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 24 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_into -i 26 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 27 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 28 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 29 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 30 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 32 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 33 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 34 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 35 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 36 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 37 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 39 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 40 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 41 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 42 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 43 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 45 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 46 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 47 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 48 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 49 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 50 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 51 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 52 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 54 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 55 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 56 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 57 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 58 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 59 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 60 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 61 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 62 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 63 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 64 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 65 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 66 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 67 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 68 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 69 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 70 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 72 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 73 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 74 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 75 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 76 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 77 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 78 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 79 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 80 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 81 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 82 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 83 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 84 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 85 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 86 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 87 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 88 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 89 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 90 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 91 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 92 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 93 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 94 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 96 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 97 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 98 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 99 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 100 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 101 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 102 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 103 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 104 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 105 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 106 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 108 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 109 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 110 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 111 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 112 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 113 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 114 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 115 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 116 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 117 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 118 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 120 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 121 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 122 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 123 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 124 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 125 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMjY3NGM3MTIwNDE4NTY0NDZlMTdlMTk2NzNiOWVhMmYwYzc4ZDM2NzM2NmY1M2RkNWUxNDdiMTQ3YTg3ZGU1OCddPVByZXN1cHVlc3RvQ2xpZW50ZVNlcnZpY2U6Om9idGVuZXJQcmVzdXB1ZXN0b0NsaWVudGVJbnRlcmlvcg== +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 127 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- stop -i 128 +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] Log closed at 2024-05-13 19:36:47.788902 + +[123] Log opened at 2024-05-13 19:36:52.615851 +[123] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.123' +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 13 +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 14 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 15 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 16 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 17 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 19 -n "$this->calcular_presupuesto" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_into -i 20 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 21 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 22 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 23 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 24 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 27 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 28 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 29 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 30 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 31 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 33 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 34 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 35 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 36 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 37 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 39 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 40 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 41 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 42 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 43 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 45 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 46 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 47 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 48 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 49 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 51 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 52 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 53 -n "$interior" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 54 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 55 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 56 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 57 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 58 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 59 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 61 -n "$input_data[\"datosPedido\"]" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_into -i 62 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 63 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 64 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 65 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 66 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 68 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 69 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 70 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 71 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 72 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 73 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 74 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 75 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 76 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 77 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 78 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 79 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 80 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 81 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 82 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 83 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 84 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 85 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 86 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 87 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 88 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 89 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 90 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 91 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 92 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 93 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 94 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- step_over -i 96 +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 97 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 98 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 99 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 100 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 101 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 102 +[123] [Step Debug] -> + +[123] Log closed at 2024-05-13 19:40:34.667726 + +[122] Log opened at 2024-05-13 19:40:37.915626 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 14 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:40:42.396842 + +[122] Log opened at 2024-05-13 19:40:42.577070 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[124] Log opened at 2024-05-13 19:40:42.599197 +[122] [Step Debug] -> + +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[122] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[82] Log opened at 2024-05-13 19:40:42.599017 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[118] Log opened at 2024-05-13 19:40:42.599369 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[95] Log opened at 2024-05-13 19:40:42.599549 +[103] Log opened at 2024-05-13 19:40:42.599816 +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] -> + +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] -> + +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[82] [Step Debug] -> + +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[103] [Step Debug] -> + +[122] [Step Debug] -> + +[124] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[124] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[124] [Step Debug] -> + +[122] [Step Debug] -> + +[82] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[122] [Step Debug] -> + +[95] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[103] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[124] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[118] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[122] [Step Debug] <- run -i 14 +[118] [Step Debug] <- run -i 5 +[95] [Step Debug] <- run -i 5 +[82] [Step Debug] <- run -i 5 +[103] [Step Debug] <- run -i 5 +[124] [Step Debug] <- run -i 5 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:40:43.402817 + +[122] Log opened at 2024-05-13 19:40:43.419026 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[124] Log closed at 2024-05-13 19:40:44.851688 + +[124] Log opened at 2024-05-13 19:40:44.859876 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:40:45.875598 + +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:40:46.650800 + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 19:40:47.269877 + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 19:40:47.894679 + +[117] Log opened at 2024-05-13 19:41:11.397899 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 14 +[124] [Step Debug] <- run -i 14 +[122] [Step Debug] <- run -i 14 +[124] [Step Debug] -> + +[124] Log closed at 2024-05-13 19:41:12.453946 + +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:41:12.653181 + +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 19:41:13.022041 + +[121] Log opened at 2024-05-13 19:41:23.458308 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 14 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:41:26.234611 + +[123] Log opened at 2024-05-13 19:41:26.356308 +[123] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.123' +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 14 +[125] Log opened at 2024-05-13 19:41:27.886863 +[125] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.125' +[125] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[125] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[125] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[125] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[125] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[125] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[125] [Step Debug] -> + +[125] [Step Debug] <- run -i 14 +[123] [Step Debug] -> + +[123] Log closed at 2024-05-13 19:41:28.047692 + +[125] [Step Debug] -> + +[125] [Step Debug] -> + +[125] [Step Debug] -> + +[125] [Step Debug] -> + +[125] [Step Debug] -> + +[125] [Step Debug] -> + +[125] Log closed at 2024-05-13 19:41:31.955133 + +[125] Log opened at 2024-05-13 19:41:32.114512 +[125] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.125' +[125] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[125] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[125] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[125] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[125] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[125] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[125] [Step Debug] -> + +[125] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[125] [Step Debug] -> + +[125] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[125] [Step Debug] -> + +[125] [Step Debug] <- run -i 14 +[82] Log opened at 2024-05-13 19:41:32.390070 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[103] Log opened at 2024-05-13 19:41:32.413082 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[124] Log opened at 2024-05-13 19:41:32.414204 +[95] Log opened at 2024-05-13 19:41:32.414391 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[124] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[124] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[124] [Step Debug] -> + +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[124] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[124] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[124] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[124] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[103] [Step Debug] -> + +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[124] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[82] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[103] [Step Debug] -> + +[124] [Step Debug] -> + +[95] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[124] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[103] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[82] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[124] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[82] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[82] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[103] [Step Debug] -> + +[124] [Step Debug] -> + +[95] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[124] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[95] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[103] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[82] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[103] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[124] [Step Debug] -> + +[95] [Step Debug] -> + +[103] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[95] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[103] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[103] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[82] [Step Debug] -> + +[124] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[95] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[82] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[103] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[118] Log opened at 2024-05-13 19:41:32.468730 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[124] [Step Debug] <- run -i 15 +[103] [Step Debug] <- run -i 16 +[95] [Step Debug] <- run -i 16 +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 20 +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 4 +[125] [Step Debug] -> + +[125] [Step Debug] <- stop -i 15 +[125] [Step Debug] -> + +[125] Log closed at 2024-05-13 19:41:32.914765 + +[125] Log opened at 2024-05-13 19:41:32.924795 +[125] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.125' +[125] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[125] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[125] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[125] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[125] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[125] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] -> + +[103] [Step Debug] <- stop -i 17 +[103] [Step Debug] -> + +[103] Log closed at 2024-05-13 19:41:33.881073 + +[103] Log opened at 2024-05-13 19:41:33.893709 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] -> + +[124] [Step Debug] <- stop -i 16 +[124] [Step Debug] -> + +[124] Log closed at 2024-05-13 19:41:34.120544 + +[82] [Step Debug] -> + +[82] [Step Debug] <- stop -i 21 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:41:34.712395 + +[95] [Step Debug] -> + +[95] [Step Debug] <- stop -i 17 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 19:41:35.051148 + +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:41:35.233592 + +[125] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[125] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[125] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[125] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[125] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[125] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[125] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[125] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[125] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[125] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[125] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[125] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[125] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[125] Log closed at 2024-05-13 19:41:35.442363 + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-05-13 19:41:35.654793 + +[124] Log opened at 2024-05-13 19:41:35.688565 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] Log closed at 2024-05-13 19:41:36.860045 + +[124] Log opened at 2024-05-13 19:41:41.542929 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] Log opened at 2024-05-13 19:41:43.131715 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log opened at 2024-05-13 19:41:43.238267 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] Log opened at 2024-05-13 19:41:43.447045 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] Log opened at 2024-05-13 19:41:43.526125 +[123] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.123' +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] Log opened at 2024-05-13 19:41:43.627330 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log opened at 2024-05-13 19:41:43.771328 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log opened at 2024-05-13 19:41:43.895037 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] Log closed at 2024-05-13 19:41:44.516926 + +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] Log closed at 2024-05-13 19:41:45.274470 + +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] Log closed at 2024-05-13 19:41:45.741568 + +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] Log closed at 2024-05-13 19:41:46.632676 + +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] Log closed at 2024-05-13 19:41:47.554733 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 19:41:48.030202 + +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] Log closed at 2024-05-13 19:41:48.485295 + +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] Log closed at 2024-05-13 19:41:49.210790 + +[82] Log opened at 2024-05-13 19:42:00.053573 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:42:01.432572 + +[82] Log opened at 2024-05-13 19:42:05.350638 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:42:06.668229 + +[82] Log opened at 2024-05-13 19:42:07.860072 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:42:09.939625 + +[82] Log opened at 2024-05-13 19:42:12.641616 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:42:14.228697 + +[82] Log opened at 2024-05-13 19:42:18.368698 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-05-13 19:42:19.727725 + +[127] Log opened at 2024-05-13 19:42:46.699583 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] Log closed at 2024-05-13 19:42:49.181711 + +[124] Log opened at 2024-05-13 19:43:18.563264 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 993 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1018 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1184 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[124] [Step Debug] -> + +[124] [Step Debug] <- run -i 14 +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- stack_get -i 15 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 16 -n "$input_data" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 17 -n "$datosPedido" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_names -i 18 -d 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- step_over -i 20 +[124] [Step Debug] -> + +[124] [Step Debug] <- stack_get -i 21 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 22 -n "$input_data" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 23 -n "$datosPedido" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_names -i 24 -d 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- run -i 26 +[124] [Step Debug] -> + +[124] [Step Debug] <- stack_get -i 27 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 28 -n "$input_data" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 29 -n "$datosPedido" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_names -i 30 -d 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- run -i 32 +[124] [Step Debug] -> + +[124] [Step Debug] <- stack_get -i 33 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 34 -n "$input_data" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- property_get -i 35 -n "$datosPedido" -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_names -i 36 -d 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_remove -i 38 -d 1240021 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_remove -i 39 -d 1240022 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_remove -i 40 -d 1240023 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 41 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1004 +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 42 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1028 +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 43 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1194 +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_remove -i 44 -d 1240028 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 45 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1405 +[124] [Step Debug] -> + +[124] [Step Debug] -> + +[124] [Step Debug] <- run -i 46 +[124] [Step Debug] -> + +[124] Log closed at 2024-05-13 19:45:25.273145 + +[122] Log opened at 2024-05-13 19:45:27.637379 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1004 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1028 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1194 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1405 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 15 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 16 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 18 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 19 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 21 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 22 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 23 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 24 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 25 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 27 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 28 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 29 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 30 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 31 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 33 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 34 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 35 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 36 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 37 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 39 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 40 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 41 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 42 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 43 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_remove -i 45 -d 1220033 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 46 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1406 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 47 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:46:00.903663 + +[122] Log opened at 2024-05-13 19:46:02.962578 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1004 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1028 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1194 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1406 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 15 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 16 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 18 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 19 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 21 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 22 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 23 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 24 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 25 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 27 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 28 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 29 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 30 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 31 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 33 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 34 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 35 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 36 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 37 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 39 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 40 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 41 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 42 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 43 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 45 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 46 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 47 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 48 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 49 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 51 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 52 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 53 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 54 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 55 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 56 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 57 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 58 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 59 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 60 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 61 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 62 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 64 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 65 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 66 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 67 -n "$datosPedido" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 68 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 69 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 70 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:46:19.178563 + +[121] Log opened at 2024-05-13 19:47:21.245784 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 868 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1004 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1028 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1194 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1406 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 16 +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 17 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 18 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 19 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 20 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_remove -i 22 -d 1210019 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 23 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 24 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 25 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 26 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 27 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_remove -i 29 -d 1210020 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 30 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 31 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 32 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 33 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 34 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 36 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 37 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 38 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 39 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 40 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_remove -i 42 -d 1210023 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 43 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 44 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 45 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 46 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 47 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_remove -i 49 -d 1210022 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 50 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 51 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 52 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 53 -n "$datosPedido" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 54 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_remove -i 56 -d 1210021 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 57 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:47:47.079511 + +[123] Log opened at 2024-05-13 19:48:03.140364 +[123] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.123' +[123] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[123] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[123] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[123] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[123] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[123] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[123] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 345 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[123] [Step Debug] -> + +[123] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 12 +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] -> + +[123] [Step Debug] <- stack_get -i 13 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 15 -n "$datosPedido" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 16 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 18 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 19 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 20 -n "$papel_formato_id->ancho" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_names -i 22 -d 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 23 -n "$input_data" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- property_get -i 24 -n "$papel_formato_id->ancho" -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[123] [Step Debug] -> + +[123] [Step Debug] <- run -i 26 +[123] [Step Debug] -> + +[123] Log closed at 2024-05-13 19:50:31.657874 + +[117] Log opened at 2024-05-13 19:50:53.794456 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 13 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 15 -n "$papel_formato_id->ancho" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 16 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 18 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 19 -n "$input_data" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 21 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 23 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 19:51:06.506118 + +[95] Log opened at 2024-05-13 19:53:11.860692 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 13 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_names -i 17 -d 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 19 -n "$data_cabecera" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 20 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 19:53:34.197432 + +[118] Log opened at 2024-05-13 19:54:23.018788 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:54:27.309118 + +[118] Log opened at 2024-05-13 19:54:27.513612 +[127] Log opened at 2024-05-13 19:54:27.513975 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[82] Log opened at 2024-05-13 19:54:27.513712 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[124] Log opened at 2024-05-13 19:54:27.513964 +[124] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.124' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] Log opened at 2024-05-13 19:54:27.515508 +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[124] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] Log opened at 2024-05-13 19:54:27.516734 +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[124] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[124] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[124] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] -> + +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] -> + +[124] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[127] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[124] [Step Debug] -> + +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[121] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[121] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[82] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[124] [Step Debug] -> + +[121] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[127] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[124] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[124] [Step Debug] -> + +[121] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] -> + +[122] [Step Debug] -> + +[124] [Step Debug] -> + +[121] [Step Debug] -> + +[118] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[124] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[118] [Step Debug] -> + +[124] [Step Debug] -> + +[122] [Step Debug] -> + +[127] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[124] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] -> + +[121] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[127] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[82] [Step Debug] -> + +[121] [Step Debug] -> + +[122] [Step Debug] -> + +[124] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[121] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[122] [Step Debug] -> + +[82] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[124] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[124] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[122] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[124] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[127] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[124] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[124] [Step Debug] -> + +[118] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[82] [Step Debug] -> + +[127] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[124] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[124] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[124] [Step Debug] -> + +[127] [Step Debug] -> + +[121] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[122] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[124] [Step Debug] -> + +[118] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[127] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[127] [Step Debug] -> + +[122] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[122] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[121] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[118] [Step Debug] -> + +[82] [Step Debug] -> + +[127] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[122] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[124] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] -> + +[82] [Step Debug] -> + +[127] [Step Debug] -> + +[118] [Step Debug] -> + +[124] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] -> + +[122] [Step Debug] -> + +[127] [Step Debug] -> + +[82] [Step Debug] -> + +[124] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[122] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[121] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] -> + +[122] [Step Debug] -> + +[127] [Step Debug] -> + +[124] [Step Debug] -> + +[118] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[124] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] -> + +[122] [Step Debug] -> + +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[124] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[82] [Step Debug] -> + +[124] [Step Debug] -> + +[127] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[124] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[124] [Step Debug] -> + +[127] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[124] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[124] [Step Debug] -> + +[82] [Step Debug] -> + +[118] [Step Debug] <- run -i 21 +[124] [Step Debug] <- run -i 24 +[127] [Step Debug] <- run -i 24 +[82] [Step Debug] <- run -i 24 +[121] [Step Debug] <- run -i 24 +[122] [Step Debug] <- run -i 24 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:54:29.510112 + +[118] Log opened at 2024-05-13 19:54:29.519481 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:54:30.059051 + +[121] Log opened at 2024-05-13 19:54:30.065887 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:54:30.648973 + +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:54:30.679879 + +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 19:54:31.328421 + +[124] [Step Debug] -> + +[124] Log closed at 2024-05-13 19:54:32.008661 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:54:32.705840 + +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:54:32.917333 + +[121] Log opened at 2024-05-13 19:54:32.988240 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:54:34.096645 + +[117] Log opened at 2024-05-13 19:54:50.766696 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[95] Log opened at 2024-05-13 19:54:52.529458 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[126] Log opened at 2024-05-13 19:54:52.747844 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 12 +[128] Log opened at 2024-05-13 19:54:52.976076 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 12 +[122] Log opened at 2024-05-13 19:54:53.074303 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 12 +[127] Log opened at 2024-05-13 19:54:53.471556 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[127] [Step Debug] -> + +[127] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 19:54:53.982497 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 19:54:54.896441 + +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 19:54:55.405933 + +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 19:54:56.295331 + +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 19:54:56.758269 + +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 19:54:57.635347 + +[82] Log opened at 2024-05-13 19:55:12.374816 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:55:14.056179 + +[82] Log opened at 2024-05-13 19:55:17.303973 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:55:18.764765 + +[82] Log opened at 2024-05-13 19:55:21.293347 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 670 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- stack_get -i 13 +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[82] [Step Debug] -> + +[82] [Step Debug] <- context_names -i 16 -d 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_remove -i 18 -d 820121 +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 19 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:55:33.249289 + +[82] Log opened at 2024-05-13 19:55:35.204081 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:55:36.838412 + +[82] Log opened at 2024-05-13 19:55:41.237639 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:55:42.939583 + +[82] Log opened at 2024-05-13 19:55:46.347323 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 11 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- stack_get -i 12 +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 15 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- context_names -i 16 -d 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 18 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 19:55:50.058920 + +[118] Log opened at 2024-05-13 19:56:36.405463 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 11 +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 12 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 15 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 16 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 18 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 19 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 20 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDNlZGExZDlhZmFhMjhkYjliMmFjYTVjZjlhNjZkM2Q4ZmQyYTBhMGJmMjEzODI1YmMzNTJkYjA3ZGNhNGM0YiddPSRkYXRh +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 23 -n "$DEVSENSE_EVAL_CACHE['d3eda1d9afaa28db9b2aca5cf9a66d3d8fd2a0a0bf213825bc352db07dca4c4b']" -c 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 24 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 25 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 26 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 28 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 19:56:59.981696 + +[121] Log opened at 2024-05-13 19:57:50.910895 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 11 +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 12 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 15 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 16 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 18 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 19 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 20 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 22 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 23 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 24 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 26 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 19:58:05.854969 + +[117] Log opened at 2024-05-13 19:59:43.945345 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 11 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 12 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 15 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 16 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 18 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 19:59:48.835234 + +[129] Log opened at 2024-05-13 20:00:10.302471 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 346 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 13 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 17 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_remove -i 19 -d 1290001 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_remove -i 20 -d 1290002 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 22 +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 23 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 24 -n "$input_data" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 26 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 28 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 20:00:44.374109 + +[95] Log opened at 2024-05-13 20:00:46.166272 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 356 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 465 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 11 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 12 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[95] [Step Debug] -> + +[95] [Step Debug] <- context_names -i 15 -d 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 17 +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 18 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_names -i 19 -d 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 21 -n "$extra_info" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_remove -i 22 -d 950102 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_remove -i 23 -d 950103 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 357 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 466 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 26 +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 27 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_names -i 28 -d 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 30 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:02:18.396723 + +[122] Log opened at 2024-05-13 20:02:22.471798 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 357 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 466 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 11 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 12 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 15 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 17 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 18 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 19 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_remove -i 21 -d 1220063 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_remove -i 22 -d 1220064 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 469 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 25 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 26 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 27 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 29 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:05:00.712840 + +[126] Log opened at 2024-05-13 20:05:04.055030 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 469 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 11 +[126] [Step Debug] -> + +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 12 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 15 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 17 +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 20:05:09.708399 + +[128] Log opened at 2024-05-13 20:05:25.874103 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 417 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 11 +[128] [Step Debug] -> + +[128] [Step Debug] -> + +[128] [Step Debug] <- stack_get -i 12 +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 13 -n "$input_data" -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 15 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_names -i 16 -d 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 18 +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:05:42.756053 + +[127] Log opened at 2024-05-13 20:07:12.820486 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 390 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[127] [Step Debug] -> + +[127] [Step Debug] <- run -i 12 +[127] [Step Debug] -> + +[127] [Step Debug] -> + +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 20:07:15.599247 + +[82] Log opened at 2024-05-13 20:09:35.283263 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- stack_get -i 13 +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- context_names -i 17 -d 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 19 -n "$data[\"tirada\"]" -p 0 -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- property_get -i 20 -n "$data[\"tamanio\"]" -p 0 -d 0 -c 0 +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 21 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:10:04.410732 + +[118] Log opened at 2024-05-13 20:10:06.400853 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 13 +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[118] [Step Debug] -> + +[118] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 17 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 19 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 20 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 21 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 23 +[118] [Step Debug] -> + +[118] [Step Debug] <- stack_get -i 24 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_names -i 25 -d 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 27 +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 20:10:12.623707 + +[121] Log opened at 2024-05-13 20:10:29.786287 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 13 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnN2QxZDI5M2I2ZDQ1NDJmYmE2MGFlMjRiYjcyZTk1Y2MwMWJhZGE5NzYxZjBiYWRlYTUzMjc1MTcwNWNlNjNhNiddPSEkcGFwZWxfZm9ybWF0b19pZA== +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['7d1d293b6d4542fba60ae24bb72e95cc01bada9761f0badea532751705ce63a6']" -c 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 17 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 19 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 21 -n "$papel_formato_id" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 23 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 24 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYWM5NjMyYmUwZjZjMmE2NWYzMTUyYmE0MGI1NDI2OGQ2OGRjZTQwYWIxNTM4MWNjM2YxZGFhNTVhMTkxNjczNiddPSRwYXBlbF9mb3JtYXRvX2lkLmlk +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 27 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 28 -n "$input_data" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 29 -n "$papel_formato_id->id" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- property_get -i 31 -n "$papel_formato_id" -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 32 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 33 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 34 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 36 +[121] [Step Debug] -> + +[121] [Step Debug] <- stack_get -i 37 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_names -i 38 -d 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 40 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:11:41.227713 + +[117] Log opened at 2024-05-13 20:11:43.073119 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 13 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 15 -n "$papel_formato_id->id" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 16 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 18 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 19 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 20 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 22 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 23 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 24 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 26 +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 27 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 28 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 30 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 20:11:52.759477 + +[129] Log opened at 2024-05-13 20:13:13.517286 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 13 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 15 -n "$papel_formato_id->id" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 16 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 18 +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 19 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 20 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 22 +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 23 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 24 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 26 +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 27 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 28 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 30 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 20:13:19.754345 + +[95] Log opened at 2024-05-13 20:16:57.756650 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 895 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 322 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 13 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- stack_get -i 14 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 15 -n "$input_data" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 16 -n "$papel_formato_id->id" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_names -i 17 -d 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- property_get -i 19 -n "$papel_formato_id" -d 0 -c 0 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_remove -i 20 -d 950110 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 22 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:17:36.956269 + +[122] Log opened at 2024-05-13 20:17:38.694525 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 322 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 13 +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 14 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 15 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 16 -n "$papel_formato_id->id" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 17 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_remove -i 19 -d 1220072 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 20 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 21 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 22 -n "$input_data" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- property_get -i 23 -n "$papel_formato_id->id" -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 24 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 26 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 27 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 28 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 30 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 31 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 32 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 34 +[122] [Step Debug] -> + +[122] [Step Debug] <- stack_get -i 35 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_names -i 36 -d 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 38 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:17:52.781825 + +[126] Log opened at 2024-05-13 20:20:30.299742 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 14 +[126] [Step Debug] -> + +[126] [Step Debug] -> + +[126] [Step Debug] -> + +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 15 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 16 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 17 -n "$papel_formato_id->id" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 18 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 20 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 21 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNzUwODA3NjI5ODAwZTk5YTg5MjA5MWYyYmQ5MjI2NzBjODM4OWEzM2ZmYmQ5M2FmOTY0MDRmNmU4ZjNjNjY4MyddPXNlc3Npb24oKS0+aWRfdXNlcg== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 23 -n "$DEVSENSE_EVAL_CACHE['750807629800e99a892091f2bd922670c8389a33ffbd93af96404f6e8f3c6683']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 25 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 26 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNDNiNjFhMDc0NzY1MTc5ZTNmNDhiMjlhMGYwZmU5Mzg5YjdiMTA4NmNhODA4ZGY3ZDkzN2NmMzBkODllZjcwZCddPXNlc3Npb24oKQ== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 28 -n "$DEVSENSE_EVAL_CACHE['43b61a074765179e3f48b29a0f0fe9389b7b1086ca808df7d937cf30d89ef70d']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 30 -n "$DEVSENSE_EVAL_CACHE['43b61a074765179e3f48b29a0f0fe9389b7b1086ca808df7d937cf30d89ef70d']->driver" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 31 -n "$DEVSENSE_EVAL_CACHE['43b61a074765179e3f48b29a0f0fe9389b7b1086ca808df7d937cf30d89ef70d']->config" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 32 -n "$DEVSENSE_EVAL_CACHE['43b61a074765179e3f48b29a0f0fe9389b7b1086ca808df7d937cf30d89ef70d']->config::registrars" -p 0 -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 33 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 34 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnY2Y2YzI1NzgwYWE0ZjdkNjZiOTQwM2Q1MWQ5NmZiZTk2ZGE5MzBiNzA2Zjc2YjY2Y2UxZTdlZDc3MTQwYzM3NiddPWF1dGgoKS0+dXNlcigp +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 36 -n "$DEVSENSE_EVAL_CACHE['cf6c25780aa4f7d66b9403d51d96fbe96da930b706f76b66ce1e7ed77140c376']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 38 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 39 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 40 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 41 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 43 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 44 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 46 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 48 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 49 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 51 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 53 +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 54 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 55 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 56 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 57 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 58 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 59 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 60 +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 61 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 62 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 64 +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 65 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 66 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 68 +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 69 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 70 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 72 +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 20:22:13.966404 + +[128] Log opened at 2024-05-13 20:22:19.463522 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 925 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 14 +[128] [Step Debug] -> + +[128] [Step Debug] -> + +[128] [Step Debug] -> + +[128] [Step Debug] -> + +[128] [Step Debug] <- stack_get -i 15 +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 16 -n "$input_data" -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 18 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_names -i 19 -d 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_remove -i 21 -d 1280015 +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 22 +[128] [Step Debug] -> + +[128] [Step Debug] <- stack_get -i 23 +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 24 -n "$input_data" -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_names -i 27 -d 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 29 +[128] [Step Debug] -> + +[128] [Step Debug] <- stack_get -i 30 +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[128] [Step Debug] -> + +[128] [Step Debug] <- property_get -i 33 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_names -i 34 -d 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_remove -i 36 -d 1280014 +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 37 +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:23:04.534139 + +[127] Log opened at 2024-05-13 20:23:39.040061 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[127] [Step Debug] -> + +[127] [Step Debug] <- run -i 12 +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 20:23:42.721716 + +[127] Log opened at 2024-05-13 20:23:43.552048 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[127] [Step Debug] -> + +[127] [Step Debug] <- run -i 12 +[118] Log opened at 2024-05-13 20:23:43.773529 +[118] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.118' +[118] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[118] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[118] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[118] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[118] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[118] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[118] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[118] [Step Debug] -> + +[118] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[118] [Step Debug] -> + +[118] [Step Debug] <- run -i 12 +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 20:23:44.486718 + +[118] [Step Debug] -> + +[118] [Step Debug] -> + +[118] Log closed at 2024-05-13 20:23:46.438260 + +[121] Log opened at 2024-05-13 20:23:52.383096 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[117] Log opened at 2024-05-13 20:23:54.191447 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:23:55.003853 + +[121] Log opened at 2024-05-13 20:23:55.391706 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[129] Log opened at 2024-05-13 20:23:56.246404 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 20:23:56.503583 + +[121] [Step Debug] -> + +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:23:56.844254 + +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 20:23:59.018746 + +[95] Log opened at 2024-05-13 20:24:08.287121 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[95] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:24:13.938457 + +[95] Log opened at 2024-05-13 20:24:14.068598 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[128] Log opened at 2024-05-13 20:24:14.075827 +[82] Log opened at 2024-05-13 20:24:14.075935 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[127] Log opened at 2024-05-13 20:24:14.076181 +[122] Log opened at 2024-05-13 20:24:14.075776 +[126] Log opened at 2024-05-13 20:24:14.076083 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] -> + +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] -> + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] -> + +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] -> + +[128] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[127] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[128] [Step Debug] -> + +[126] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[122] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[127] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[82] [Step Debug] -> + +[128] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[128] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[128] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[122] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[128] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[128] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 8 -n max_children -v 100 +[82] [Step Debug] -> + +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 +[82] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[128] [Step Debug] -> + +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[122] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[122] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[122] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 8 -n max_children -v 100 +[122] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 +[128] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[82] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 8 -n max_children -v 100 +[128] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 +[122] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[82] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[122] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[128] [Step Debug] -> + +[82] [Step Debug] -> + +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[126] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[127] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[127] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] <- run -i 12 +[122] [Step Debug] <- run -i 12 +[95] [Step Debug] <- run -i 12 +[128] [Step Debug] <- run -i 12 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[127] [Step Debug] -> + +[126] [Step Debug] -> + +[127] [Step Debug] <- run -i 15 +[126] [Step Debug] <- run -i 15 +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:24:14.658845 + +[95] Log opened at 2024-05-13 20:24:14.667961 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:24:15.744278 + +[128] Log opened at 2024-05-13 20:24:15.753849 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:24:16.297767 + +[82] Log opened at 2024-05-13 20:24:16.306582 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 20:24:16.826685 + +[127] Log opened at 2024-05-13 20:24:16.835661 +[127] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.127' +[127] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[127] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[127] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[127] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[127] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[127] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[127] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[127] [Step Debug] -> + +[127] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[127] [Step Debug] -> + +[127] [Step Debug] <- run -i 12 +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 20:24:17.381900 + +[126] Log opened at 2024-05-13 20:24:17.389922 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 12 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:24:18.267578 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:24:18.448863 + +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:24:18.632118 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:24:18.821757 + +[127] [Step Debug] -> + +[127] Log closed at 2024-05-13 20:24:19.034563 + +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 20:24:19.216944 + +[82] Log opened at 2024-05-13 20:24:19.295251 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:24:20.553026 + +[117] Log opened at 2024-05-13 20:27:17.073073 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 389 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] [Step Debug] -> + +[117] [Step Debug] <- stack_get -i 13 +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[117] [Step Debug] -> + +[117] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_names -i 17 -d 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_remove -i 19 -d 1170089 +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 20 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 20:27:23.943134 + +[121] Log opened at 2024-05-13 20:27:39.753227 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 11 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:27:45.564017 + +[122] Log opened at 2024-05-13 20:27:45.708977 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[95] Log opened at 2024-05-13 20:27:45.709609 +[121] Log opened at 2024-05-13 20:27:45.709830 +[129] Log opened at 2024-05-13 20:27:45.709590 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[130] Log opened at 2024-05-13 20:27:45.709865 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] Log opened at 2024-05-13 20:27:45.712457 +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] -> + +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[130] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[129] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[128] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[128] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[128] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[95] [Step Debug] -> + +[129] [Step Debug] -> + +[121] [Step Debug] -> + +[130] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[128] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[128] [Step Debug] -> + +[129] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[129] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[122] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[121] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[129] [Step Debug] -> + +[128] [Step Debug] -> + +[122] [Step Debug] -> + +[95] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[128] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[129] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[128] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[130] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[129] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[130] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[128] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[130] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[122] [Step Debug] -> + +[95] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[130] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[128] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[130] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[130] [Step Debug] -> + +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[128] [Step Debug] -> + +[122] [Step Debug] -> + +[130] [Step Debug] -> + +[95] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[128] [Step Debug] -> + +[129] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[130] [Step Debug] -> + +[128] [Step Debug] -> + +[129] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[128] [Step Debug] -> + +[130] [Step Debug] -> + +[95] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[128] [Step Debug] -> + +[130] [Step Debug] -> + +[95] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] <- run -i 15 +[129] [Step Debug] <- run -i 17 +[122] [Step Debug] <- run -i 17 +[95] [Step Debug] <- run -i 17 +[130] [Step Debug] <- run -i 17 +[128] [Step Debug] <- run -i 17 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:27:47.670838 + +[121] Log opened at 2024-05-13 20:27:47.679701 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 11 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:27:48.327325 + +[122] Log opened at 2024-05-13 20:27:48.336254 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 11 +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:27:48.963904 + +[128] Log opened at 2024-05-13 20:27:48.973211 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 11 +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 20:27:49.531073 + +[130] Log opened at 2024-05-13 20:27:49.541317 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[130] [Step Debug] <- run -i 11 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 20:27:50.138717 + +[129] Log opened at 2024-05-13 20:27:50.146719 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 11 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 20:27:50.687651 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:27:50.734052 + +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:27:50.965456 + +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:27:51.155773 + +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:27:51.343641 + +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 20:27:51.554847 + +[122] Log opened at 2024-05-13 20:27:51.621545 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 11 +[130] Log opened at 2024-05-13 20:27:51.679379 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[128] Log opened at 2024-05-13 20:27:51.698890 +[128] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.128' +[128] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[128] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[128] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[128] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[128] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] -> + +[128] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[128] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[128] [Step Debug] -> + +[128] [Step Debug] <- run -i 5 +[130] [Step Debug] <- run -i 11 +[129] Log opened at 2024-05-13 20:27:51.743331 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 5 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:27:52.755690 + +[128] [Step Debug] -> + +[128] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[128] [Step Debug] -> + +[128] Log closed at 2024-05-13 20:27:53.418758 + +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 20:27:53.890282 + +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 20:27:54.297973 + +[126] Log opened at 2024-05-13 20:28:54.753576 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 12 +[126] [Step Debug] -> + +[126] [Step Debug] -> + +[126] [Step Debug] <- stack_get -i 13 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 14 -n "$input_data" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 16 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_names -i 17 -d 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- property_get -i 19 -n "$data_cabecera" -d 0 -c 0 +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 20 +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 20:29:10.862107 + +[82] Log opened at 2024-05-13 20:29:54.095593 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:29:58.453138 + +[82] Log opened at 2024-05-13 20:29:58.619100 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[117] Log opened at 2024-05-13 20:29:58.626535 +[131] Log opened at 2024-05-13 20:29:58.626937 +[121] Log opened at 2024-05-13 20:29:58.627075 +[95] Log opened at 2024-05-13 20:29:58.627088 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[131] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.131' +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[122] Log opened at 2024-05-13 20:29:58.627502 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[131] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] -> + +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[131] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[131] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[131] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[131] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[131] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] -> + +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[131] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[131] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[131] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[117] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[122] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[121] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[82] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[122] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] -> + +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[82] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[117] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[131] [Step Debug] -> + +[117] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[122] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[121] [Step Debug] -> + +[122] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[131] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[122] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[131] [Step Debug] -> + +[117] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[117] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[121] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[117] [Step Debug] -> + +[122] [Step Debug] -> + +[121] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[122] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[122] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[122] [Step Debug] <- run -i 12 +[117] [Step Debug] <- run -i 12 +[131] [Step Debug] <- run -i 12 +[121] [Step Debug] <- run -i 12 +[95] [Step Debug] <- run -i 12 +[82] [Step Debug] <- run -i 12 +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:29:59.456380 + +[82] Log opened at 2024-05-13 20:29:59.467411 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:30:01.006943 + +[122] Log opened at 2024-05-13 20:30:01.015448 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 12 +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 20:30:01.907030 + +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 20:30:02.541560 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 20:30:03.173511 + +[131] [Step Debug] -> + +[131] Log closed at 2024-05-13 20:30:03.819612 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 20:30:04.009283 + +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:30:04.216670 + +[122] Log opened at 2024-05-13 20:30:04.298556 +[122] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.122' +[122] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[122] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[122] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[122] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[122] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[122] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[122] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[122] [Step Debug] -> + +[122] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[122] [Step Debug] -> + +[122] [Step Debug] <- run -i 12 +[122] [Step Debug] -> + +[122] Log closed at 2024-05-13 20:30:05.448958 + +[130] Log opened at 2024-05-13 21:03:02.158797 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[130] [Step Debug] <- run -i 12 +[130] [Step Debug] -> + +[130] [Step Debug] -> + +[130] [Step Debug] <- stack_get -i 13 +[130] [Step Debug] -> + +[129] Log opened at 2024-05-13 21:03:10.989701 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[126] Log opened at 2024-05-13 21:03:12.364760 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 12 +[132] Log opened at 2024-05-13 21:03:12.445793 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[132] [Step Debug] -> + +[132] [Step Debug] <- run -i 12 +[117] Log opened at 2024-05-13 21:03:12.665547 +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[117] [Step Debug] -> + +[117] [Step Debug] <- run -i 12 +[121] Log opened at 2024-05-13 21:03:12.776546 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[95] Log opened at 2024-05-13 21:03:12.870679 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[131] Log opened at 2024-05-13 21:03:13.022955 +[131] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.131' +[131] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[131] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[131] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[131] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[131] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[131] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[131] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[131] [Step Debug] -> + +[131] [Step Debug] <- run -i 12 +[82] Log opened at 2024-05-13 21:03:13.185738 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[82] [Step Debug] -> + +[82] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[82] [Step Debug] -> + +[82] [Step Debug] <- run -i 12 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:03:13.924766 + +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 21:03:15.648179 + +[132] [Step Debug] -> + +[132] Log closed at 2024-05-13 21:03:16.523734 + +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 21:03:17.375134 + +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 21:03:18.230051 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 21:03:19.101747 + +[131] [Step Debug] -> + +[131] Log closed at 2024-05-13 21:03:19.961028 + +[82] [Step Debug] -> + +[82] Log closed at 2024-05-13 21:03:20.819306 + +[129] Log opened at 2024-05-13 21:03:31.153490 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 13 +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 14 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:04:01.858049 + +[130] [Step Debug] <- run -i 14 +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 21:04:03.304508 + +[134] Log opened at 2024-05-13 21:04:03.628795 +[134] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.134' +[134] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[134] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[134] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[134] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[134] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[134] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[134] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[134] [Step Debug] -> + +[134] [Step Debug] <- run -i 12 +[134] [Step Debug] -> + +[134] Log closed at 2024-05-13 21:04:05.709971 + +[126] Log opened at 2024-05-13 21:04:27.562729 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 12 +[126] [Step Debug] -> + +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 21:04:30.857363 + +[95] Log opened at 2024-05-13 21:04:31.014183 +[117] Log opened at 2024-05-13 21:04:31.014249 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[117] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.117' +[132] Log opened at 2024-05-13 21:04:31.014886 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[131] Log opened at 2024-05-13 21:04:31.014855 +[121] Log opened at 2024-05-13 21:04:31.014869 +[131] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.131' +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[126] Log opened at 2024-05-13 21:04:31.016351 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[131] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[117] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[131] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[131] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[117] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[131] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[117] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[131] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[131] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[117] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[131] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] -> + +[131] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[126] [Step Debug] -> + +[117] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[117] [Step Debug] -> + +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[132] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[131] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] -> + +[117] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[117] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[117] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[131] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] -> + +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[132] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[117] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[131] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[131] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[132] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[117] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[131] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[132] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[117] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[131] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[132] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[132] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[131] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] -> + +[132] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] -> + +[132] [Step Debug] -> + +[126] [Step Debug] -> + +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[117] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[131] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] -> + +[121] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] -> + +[117] [Step Debug] -> + +[121] [Step Debug] -> + +[126] [Step Debug] -> + +[131] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[131] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] -> + +[132] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[95] [Step Debug] -> + +[121] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[131] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] -> + +[121] [Step Debug] -> + +[131] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] -> + +[126] [Step Debug] -> + +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[131] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] -> + +[117] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] -> + +[95] [Step Debug] -> + +[132] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[126] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] -> + +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[117] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[117] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] -> + +[126] [Step Debug] -> + +[117] [Step Debug] -> + +[121] [Step Debug] -> + +[95] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[117] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] -> + +[117] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[132] [Step Debug] -> + +[131] [Step Debug] <- run -i 25 +[121] [Step Debug] <- run -i 25 +[126] [Step Debug] <- run -i 26 +[132] [Step Debug] <- run -i 26 +[95] [Step Debug] <- run -i 26 +[117] [Step Debug] <- run -i 26 +[131] [Step Debug] -> + +[131] Log closed at 2024-05-13 21:04:32.329016 + +[131] Log opened at 2024-05-13 21:04:32.338046 +[131] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.131' +[131] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[131] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[131] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[131] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[131] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[131] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[131] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[131] [Step Debug] -> + +[131] [Step Debug] <- run -i 12 +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 21:04:32.749556 + +[126] Log opened at 2024-05-13 21:04:32.757819 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[126] [Step Debug] -> + +[126] [Step Debug] <- run -i 12 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 21:04:32.968029 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 21:04:33.195046 + +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 21:04:33.309401 + +[132] [Step Debug] -> + +[132] Log closed at 2024-05-13 21:04:33.415131 + +[117] [Step Debug] -> + +[117] Log closed at 2024-05-13 21:04:33.681771 + +[131] [Step Debug] -> + +[131] Log closed at 2024-05-13 21:04:33.918068 + +[131] Log opened at 2024-05-13 21:04:34.038786 +[131] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.131' +[131] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[131] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[131] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[131] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[131] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[131] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[131] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[131] [Step Debug] -> + +[131] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[131] [Step Debug] -> + +[131] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[131] [Step Debug] -> + +[131] [Step Debug] <- run -i 12 +[131] [Step Debug] -> + +[131] Log closed at 2024-05-13 21:04:35.150894 + +[129] Log opened at 2024-05-13 21:04:49.809044 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:04:51.368102 + +[129] Log opened at 2024-05-13 21:04:52.017620 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[130] Log opened at 2024-05-13 21:04:52.114497 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[130] [Step Debug] <- run -i 12 +[134] Log opened at 2024-05-13 21:04:52.191869 +[134] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.134' +[134] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[134] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[134] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[134] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[134] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[134] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[134] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[134] [Step Debug] -> + +[134] [Step Debug] <- run -i 12 +[136] Log opened at 2024-05-13 21:04:52.322656 +[136] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.136' +[136] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[136] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[136] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[136] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[136] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[136] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[136] [Step Debug] -> + +[136] [Step Debug] <- run -i 12 +[121] Log opened at 2024-05-13 21:04:52.422784 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[121] [Step Debug] -> + +[121] [Step Debug] <- run -i 12 +[95] Log opened at 2024-05-13 21:04:52.573963 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] Log opened at 2024-05-13 21:04:52.614907 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[95] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[126] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[126] [Step Debug] -> + +[95] [Step Debug] <- run -i 12 +[126] [Step Debug] <- run -i 5 +[132] Log opened at 2024-05-13 21:04:52.774609 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[132] [Step Debug] -> + +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:04:54.220640 + +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 21:04:54.708578 + +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 21:04:55.126742 + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 21:04:55.551571 + +[134] [Step Debug] -> + +[134] Log closed at 2024-05-13 21:04:56.448742 + +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 21:04:56.851568 + +[136] [Step Debug] -> + +[136] Log closed at 2024-05-13 21:04:57.715510 + +[137] Log opened at 2024-05-13 21:05:05.528168 +[137] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.137' +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[137] [Step Debug] -> + +[132] [Step Debug] <- run -i 12 +[137] [Step Debug] <- run -i 12 +[132] [Step Debug] -> + +[132] Log closed at 2024-05-13 21:05:06.887422 + +[137] [Step Debug] -> + +[137] Log closed at 2024-05-13 21:05:07.895950 + +[139] Log opened at 2024-05-13 21:05:17.599091 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 12 +[129] Log opened at 2024-05-13 21:05:18.694725 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 12 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:05:20.076261 + +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:05:21.099057 + +[139] Log opened at 2024-05-13 21:05:23.791066 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 12 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:05:25.477311 + +[139] Log opened at 2024-05-13 21:05:26.740968 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 12 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:05:28.666402 + +[139] Log opened at 2024-05-13 21:05:29.025082 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 12 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:05:30.776198 + +[139] Log opened at 2024-05-13 21:05:34.309418 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 12 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:05:36.016192 + +[130] Log opened at 2024-05-13 21:07:03.522022 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[130] [Step Debug] <- run -i 13 +[130] [Step Debug] -> + +[130] [Step Debug] -> + +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 21:07:07.755886 + +[130] Log opened at 2024-05-13 21:07:07.920207 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[95] Log opened at 2024-05-13 21:07:07.936563 +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[134] Log opened at 2024-05-13 21:07:07.940294 +[130] [Step Debug] -> + +[134] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.134' +[126] Log opened at 2024-05-13 21:07:07.944317 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[134] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[134] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[134] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[134] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[134] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[134] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[134] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[134] [Step Debug] -> + +[95] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] -> + +[126] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] -> + +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[136] Log opened at 2024-05-13 21:07:07.959864 +[134] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] -> + +[134] [Step Debug] -> + +[136] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.136' +[126] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[95] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[134] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[134] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[126] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[95] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[134] [Step Debug] -> + +[95] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[136] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] Log opened at 2024-05-13 21:07:07.962369 +[126] [Step Debug] -> + +[136] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[136] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[134] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[136] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[134] [Step Debug] -> + +[95] [Step Debug] -> + +[136] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] -> + +[126] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[136] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[136] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[136] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[126] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[95] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[134] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[121] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[121] [Step Debug] -> + +[121] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[121] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[136] [Step Debug] -> + +[134] [Step Debug] -> + +[126] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[121] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[136] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[134] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[126] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[121] [Step Debug] -> + +[130] [Step Debug] -> + +[95] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[121] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[121] [Step Debug] -> + +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] -> + +[134] [Step Debug] -> + +[126] [Step Debug] -> + +[130] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[136] [Step Debug] -> + +[130] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[130] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[130] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[95] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[126] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[136] [Step Debug] -> + +[95] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[134] [Step Debug] -> + +[126] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[136] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[126] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[134] [Step Debug] -> + +[126] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[136] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[95] [Step Debug] -> + +[134] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[126] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[134] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[136] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[136] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[95] [Step Debug] -> + +[136] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[136] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[136] [Step Debug] -> + +[126] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[136] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[126] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] -> + +[134] [Step Debug] -> + +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[136] [Step Debug] -> + +[126] [Step Debug] -> + +[134] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[134] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[126] [Step Debug] -> + +[136] [Step Debug] -> + +[134] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[134] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[95] [Step Debug] -> + +[136] [Step Debug] -> + +[134] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[95] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[126] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[126] [Step Debug] -> + +[95] [Step Debug] -> + +[136] [Step Debug] -> + +[95] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[126] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] <- run -i 19 +[134] [Step Debug] -> + +[121] [Step Debug] <- run -i 5 +[134] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] -> + +[95] [Step Debug] -> + +[126] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[95] [Step Debug] <- run -i 21 +[126] [Step Debug] <- run -i 21 +[134] [Step Debug] -> + +[134] [Step Debug] <- run -i 21 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 17 -n max_children -v 100 +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 18 -n max_data -v 8192 +[136] [Step Debug] -> + +[136] [Step Debug] <- run -i 19 +[130] [Step Debug] -> + +[130] Log closed at 2024-05-13 21:07:08.625815 + +[130] Log opened at 2024-05-13 21:07:08.634648 +[130] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.130' +[130] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[130] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[130] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[130] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[130] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[130] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[130] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[130] [Step Debug] -> + +[130] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[130] [Step Debug] -> + +[134] [Step Debug] -> + +[134] Log closed at 2024-05-13 21:07:09.863920 + +[134] Log opened at 2024-05-13 21:07:09.873502 +[134] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.134' +[134] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[134] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[134] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[134] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[134] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[134] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[134] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[134] [Step Debug] -> + +[134] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[134] [Step Debug] -> + +[134] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[134] [Step Debug] -> + +[95] [Step Debug] -> + +[95] Log closed at 2024-05-13 21:07:10.521414 + +[121] [Step Debug] -> + +[121] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[121] [Step Debug] -> + +[121] Log closed at 2024-05-13 21:07:11.186212 + +[126] [Step Debug] -> + +[126] Log closed at 2024-05-13 21:07:12.081643 + +[136] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 20 -n notify_ok -v 1 +[136] [Step Debug] -> + +[136] Log closed at 2024-05-13 21:07:12.683966 + +[134] [Step Debug] <- stop -i 13 +[130] [Step Debug] <- stop -i 13 +[134] [Step Debug] -> + +[130] [Step Debug] -> + +[132] Log opened at 2024-05-13 21:07:34.291984 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] Log opened at 2024-05-13 21:07:34.295981 +[137] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.137' +[132] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] Log opened at 2024-05-13 21:07:36.085526 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] Log opened at 2024-05-13 21:07:36.101858 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] Log closed at 2024-05-13 21:07:36.145735 + +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] Log closed at 2024-05-13 21:07:36.794302 + +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] Log closed at 2024-05-13 21:07:37.404622 + +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] Log closed at 2024-05-13 21:07:40.189586 + +[139] Log opened at 2024-05-13 21:07:40.340016 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] Log opened at 2024-05-13 21:07:40.343052 +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] Log opened at 2024-05-13 21:07:40.343732 +[95] Log opened at 2024-05-13 21:07:40.343739 +[126] Log opened at 2024-05-13 21:07:40.343844 +[121] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.121' +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[140] Log opened at 2024-05-13 21:07:40.343958 +[126] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.126' +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] Log closed at 2024-05-13 21:07:41.080923 + +[139] Log opened at 2024-05-13 21:07:41.097180 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] Log closed at 2024-05-13 21:07:41.880007 + +[129] Log opened at 2024-05-13 21:07:41.889637 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[121] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[121] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[121] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[121] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[121] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[121] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[121] Log closed at 2024-05-13 21:07:42.124169 + +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-05-13 21:07:42.327231 + +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[126] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[126] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[126] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[126] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[126] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[126] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[126] Log closed at 2024-05-13 21:07:42.534572 + +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] Log closed at 2024-05-13 21:07:43.160970 + +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] Log closed at 2024-05-13 21:07:43.759477 + +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] Log closed at 2024-05-13 21:07:43.983556 + +[139] Log opened at 2024-05-13 21:07:44.037992 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] Log closed at 2024-05-13 21:07:45.175975 + +[139] Log opened at 2024-05-13 21:07:46.679798 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] Log opened at 2024-05-13 21:07:48.281676 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[136] Log opened at 2024-05-13 21:07:48.378805 +[136] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.136' +[136] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[136] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[136] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[136] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[136] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[136] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] Log opened at 2024-05-13 21:07:48.461454 +[137] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.137' +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] Log opened at 2024-05-13 21:07:48.586623 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[141] Log opened at 2024-05-13 21:07:48.706871 +[141] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.141' +[141] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[141] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[141] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[141] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[141] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[141] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[142] Log opened at 2024-05-13 21:07:48.878601 +[142] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.142' +[142] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[142] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[142] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[142] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[142] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[142] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[143] Log opened at 2024-05-13 21:07:49.039716 +[143] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.143' +[143] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[143] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[143] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[143] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[143] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[143] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] Log closed at 2024-05-13 21:07:49.792971 + +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] Log closed at 2024-05-13 21:07:50.390453 + +[136] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[136] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[136] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[136] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[136] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[136] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[136] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[136] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[136] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[136] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[136] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[136] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[136] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[136] Log closed at 2024-05-13 21:07:50.936348 + +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] Log closed at 2024-05-13 21:07:51.411163 + +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] Log closed at 2024-05-13 21:07:51.921243 + +[141] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[141] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[141] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[141] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[141] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[141] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[141] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[141] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[141] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[141] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[141] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[141] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[141] Log closed at 2024-05-13 21:07:52.835105 + +[142] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[142] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[142] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[142] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[142] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[142] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[142] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[142] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[142] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[142] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[142] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[142] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[142] Log closed at 2024-05-13 21:07:53.709186 + +[143] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[143] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[143] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[143] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[143] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[143] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[143] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[143] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[143] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[143] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[143] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[143] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[143] Log closed at 2024-05-13 21:07:54.611810 + +[140] Log opened at 2024-05-13 21:08:04.446084 +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] Log closed at 2024-05-13 21:08:06.281465 + +[140] Log opened at 2024-05-13 21:08:09.025676 +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] Log closed at 2024-05-13 21:08:10.620951 + +[140] Log opened at 2024-05-13 21:08:11.631884 +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] Log closed at 2024-05-13 21:08:13.478181 + +[140] Log opened at 2024-05-13 21:08:14.819034 +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] Log closed at 2024-05-13 21:08:16.438140 + +[140] Log opened at 2024-05-13 21:08:20.918317 +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] Log closed at 2024-05-13 21:08:22.465570 + +[144] Log opened at 2024-05-13 21:10:02.850672 +[144] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.144' +[144] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[144] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[144] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[144] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[144] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[144] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[144] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[144] [Step Debug] -> + +[144] [Step Debug] <- run -i 13 +[144] [Step Debug] -> + +[144] [Step Debug] -> + +[144] [Step Debug] -> + +[144] Log closed at 2024-05-13 21:10:07.562423 + +[144] Log opened at 2024-05-13 21:10:07.736326 +[144] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.144' +[144] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[144] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[144] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[144] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[144] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[144] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[144] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[139] Log opened at 2024-05-13 21:10:07.750621 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[144] [Step Debug] -> + +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[144] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] Log opened at 2024-05-13 21:10:07.759070 +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[144] [Step Debug] -> + +[139] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] Log opened at 2024-05-13 21:10:07.765975 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[137] Log opened at 2024-05-13 21:10:07.765912 +[136] Log opened at 2024-05-13 21:10:07.767083 +[137] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.137' +[136] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.136' +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[129] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[136] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[136] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[136] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[136] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[136] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] -> + +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] -> + +[136] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] -> + +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[139] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[132] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[132] [Step Debug] -> + +[137] [Step Debug] -> + +[136] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[136] [Step Debug] -> + +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[132] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[132] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[132] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[137] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[132] [Step Debug] -> + +[137] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[136] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[136] [Step Debug] -> + +[144] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[137] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[136] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[137] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[136] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] -> + +[136] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[137] [Step Debug] -> + +[136] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[136] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[132] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[137] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[136] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[137] [Step Debug] -> + +[136] [Step Debug] -> + +[132] [Step Debug] -> + +[129] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[137] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[136] [Step Debug] -> + +[137] [Step Debug] -> + +[132] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[137] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[136] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] -> + +[139] [Step Debug] -> + +[136] [Step Debug] -> + +[129] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] -> + +[129] [Step Debug] -> + +[139] [Step Debug] -> + +[137] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[132] [Step Debug] -> + +[129] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[132] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[132] [Step Debug] -> + +[139] [Step Debug] -> + +[137] [Step Debug] -> + +[136] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[137] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[132] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[129] [Step Debug] -> + +[137] [Step Debug] -> + +[132] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[136] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[139] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[137] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[129] [Step Debug] -> + +[136] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[132] [Step Debug] -> + +[137] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[136] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[137] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[136] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[137] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[129] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[139] [Step Debug] -> + +[136] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[144] [Step Debug] <- run -i 13 +[139] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[136] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[132] [Step Debug] -> + +[139] [Step Debug] -> + +[137] [Step Debug] -> + +[136] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[137] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[136] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[136] [Step Debug] -> + +[139] [Step Debug] -> + +[132] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[137] [Step Debug] -> + +[129] [Step Debug] -> + +[139] [Step Debug] -> + +[132] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[136] [Step Debug] -> + +[136] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] -> + +[137] [Step Debug] -> + +[139] [Step Debug] -> + +[129] [Step Debug] -> + +[132] [Step Debug] <- run -i 17 +[139] [Step Debug] <- run -i 17 +[137] [Step Debug] <- run -i 17 +[129] [Step Debug] <- run -i 17 +[136] [Step Debug] -> + +[136] [Step Debug] <- run -i 17 +[144] [Step Debug] -> + +[144] Log closed at 2024-05-13 21:10:08.493520 + +[144] Log opened at 2024-05-13 21:10:08.506992 +[144] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.144' +[144] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[144] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[144] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[144] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[144] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[144] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[144] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[144] [Step Debug] -> + +[144] [Step Debug] <- run -i 13 +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:10:10.169345 + +[129] Log opened at 2024-05-13 21:10:10.182328 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 13 +[132] [Step Debug] -> + +[132] Log closed at 2024-05-13 21:10:10.727921 + +[136] [Step Debug] -> + +[136] Log closed at 2024-05-13 21:10:11.298698 + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:10:12.245852 + +[137] [Step Debug] -> + +[137] Log closed at 2024-05-13 21:10:12.927904 + +[144] [Step Debug] -> + +[144] Log closed at 2024-05-13 21:10:13.125254 + +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:10:13.333100 + +[137] Log opened at 2024-05-13 21:10:13.376303 +[137] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.137' +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[137] [Step Debug] -> + +[137] [Step Debug] <- run -i 13 +[137] [Step Debug] -> + +[137] Log closed at 2024-05-13 21:10:14.547355 + +[137] Log opened at 2024-05-13 21:10:18.321416 +[137] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.137' +[137] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[137] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[137] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[137] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[137] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[137] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[137] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[137] [Step Debug] -> + +[137] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[137] [Step Debug] -> + +[137] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[137] [Step Debug] -> + +[137] [Step Debug] <- run -i 13 +[141] Log opened at 2024-05-13 21:10:20.358000 +[141] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.141' +[141] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[141] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[141] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[141] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[141] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[141] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[141] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[141] [Step Debug] -> + +[141] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[141] [Step Debug] -> + +[141] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[141] [Step Debug] -> + +[141] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[141] [Step Debug] -> + +[141] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[141] [Step Debug] -> + +[141] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[141] [Step Debug] -> + +[141] [Step Debug] <- run -i 13 +[142] Log opened at 2024-05-13 21:10:20.431882 +[142] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.142' +[142] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[142] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[142] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[142] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[142] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[142] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[142] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[142] [Step Debug] -> + +[142] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[142] [Step Debug] -> + +[142] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[142] [Step Debug] -> + +[142] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[142] [Step Debug] -> + +[142] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[142] [Step Debug] -> + +[142] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[142] [Step Debug] -> + +[142] [Step Debug] <- run -i 13 +[143] Log opened at 2024-05-13 21:10:20.596005 +[143] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.143' +[143] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[143] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[143] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[143] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[143] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[143] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[143] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[143] [Step Debug] -> + +[143] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[143] [Step Debug] -> + +[143] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[143] [Step Debug] -> + +[143] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[143] [Step Debug] -> + +[143] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[143] [Step Debug] -> + +[143] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[143] [Step Debug] -> + +[143] [Step Debug] <- run -i 13 +[140] Log opened at 2024-05-13 21:10:20.781807 +[140] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.140' +[140] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[140] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[140] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[140] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[140] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[140] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[140] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[140] [Step Debug] -> + +[140] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[140] [Step Debug] -> + +[140] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[140] [Step Debug] -> + +[140] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[140] [Step Debug] -> + +[140] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[140] [Step Debug] -> + +[140] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[140] [Step Debug] -> + +[140] [Step Debug] <- run -i 13 +[145] Log opened at 2024-05-13 21:10:20.977223 +[145] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.145' +[145] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[145] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[145] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[145] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[145] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[145] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[145] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[145] [Step Debug] -> + +[145] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[145] [Step Debug] -> + +[145] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[145] [Step Debug] -> + +[145] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[145] [Step Debug] -> + +[145] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[145] [Step Debug] -> + +[145] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[145] [Step Debug] -> + +[145] [Step Debug] <- run -i 13 +[132] Log opened at 2024-05-13 21:10:21.121736 +[132] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.132' +[132] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[132] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[132] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[132] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[132] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[132] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[132] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[132] [Step Debug] -> + +[132] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[132] [Step Debug] -> + +[132] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[132] [Step Debug] -> + +[132] [Step Debug] <- run -i 13 +[137] [Step Debug] -> + +[137] Log closed at 2024-05-13 21:10:21.306852 + +[141] [Step Debug] -> + +[141] Log closed at 2024-05-13 21:10:23.384222 + +[132] [Step Debug] -> + +[132] Log closed at 2024-05-13 21:10:23.854297 + +[142] [Step Debug] -> + +[142] Log closed at 2024-05-13 21:10:24.763782 + +[143] [Step Debug] -> + +[143] Log closed at 2024-05-13 21:10:25.643342 + +[140] [Step Debug] -> + +[140] Log closed at 2024-05-13 21:10:26.486938 + +[145] [Step Debug] -> + +[145] Log closed at 2024-05-13 21:10:27.363681 + +[139] Log opened at 2024-05-13 21:10:36.031479 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 13 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:10:37.789368 + +[139] Log opened at 2024-05-13 21:10:40.899617 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 13 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:10:42.530007 + +[139] Log opened at 2024-05-13 21:10:43.696992 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 13 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:10:45.567838 + +[139] Log opened at 2024-05-13 21:10:46.098900 +[139] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.139' +[139] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[139] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[139] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[139] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[139] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[139] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[139] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[139] [Step Debug] -> + +[139] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[139] [Step Debug] -> + +[139] [Step Debug] <- run -i 13 +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] [Step Debug] -> + +[139] Log closed at 2024-05-13 21:10:47.740183 + +[144] Log opened at 2024-05-13 21:11:14.423332 +[144] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.144' +[144] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[144] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[144] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[144] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[144] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[144] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[144] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[144] [Step Debug] -> + +[144] [Step Debug] <- run -i 13 +[144] [Step Debug] -> + +[144] [Step Debug] -> + +[144] [Step Debug] -> + +[144] Log closed at 2024-05-13 21:11:15.805151 + +[144] Log opened at 2024-05-13 21:11:19.006637 +[144] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.144' +[144] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[144] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[144] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[144] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[144] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[144] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[144] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[144] [Step Debug] -> + +[144] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[144] [Step Debug] -> + +[144] [Step Debug] <- run -i 13 +[144] [Step Debug] -> + +[144] [Step Debug] -> + +[144] [Step Debug] -> + +[144] [Step Debug] <- stack_get -i 14 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 15 -n "$input_data" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 17 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[144] [Step Debug] -> + +[144] [Step Debug] <- context_names -i 18 -d 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 20 -n "$id" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 21 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 22 -n "$csrfTokenName" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 23 -n "$direccion" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 24 -n "$this->guardarLineaEnvio" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 25 -n "$resultado_presupuesto" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 26 -n "$totalPapel" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 27 -n "$totales" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- property_get -i 28 -n "$lomo_sobrecubierta" -d 0 -c 0 +[144] [Step Debug] -> + +[144] [Step Debug] <- run -i 29 +[144] [Step Debug] -> + +[144] Log closed at 2024-05-13 21:17:22.183276 + +[129] Log opened at 2024-05-13 21:17:24.491218 +[129] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.129' +[129] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[129] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[129] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[129] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[129] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[129] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[129] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 898 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 324 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 335 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 360 +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[129] [Step Debug] -> + +[129] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[129] [Step Debug] -> + +[129] [Step Debug] <- run -i 13 +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] [Step Debug] <- stack_get -i 14 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 15 -n "$input_data" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjU4YWVhODAxNjU5OTVhYzE2N2M3ODcwZDQyM2YzNWExZGQ3YmY4MzhlZDlmOTNjNTRhYjQxMzE0MDc0ZmM3YiddPWF1dGgoKS0+dXNlcigpLT5pZA== +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 17 -n "$DEVSENSE_EVAL_CACHE['658aea80165995ac167c7870d423f35a1dd7bf838ed9f93c54ab41314074fc7b']" -c 1 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_names -i 18 -d 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 20 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 21 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 22 -n "$resultado_presupuesto[\"totales\"][0]" -p 0 -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 23 -n "$reqData" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 24 -n "$resultado_presupuesto" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 25 -n "$model_presupuesto->insertarPresupuestoCliente" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 26 -n "$selected_tirada" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- property_get -i 27 -n "$resultado_presupuesto" -d 0 -c 0 +[129] [Step Debug] -> + +[129] [Step Debug] <- stop -i 28 +[129] [Step Debug] -> + +[129] [Step Debug] -> + +[129] Log closed at 2024-05-13 21:18:50.235447 +