diff --git a/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php b/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php
index 4cf60040..05655883 100755
--- a/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php
+++ b/ci4/app/Controllers/Presupuestos/Cosidotapablanda.php
@@ -540,6 +540,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$item->ws_externo_json_data = character_limiter($item->ws_externo_json_data, 100);
endif;
endforeach;
+
} else {
$isColor = $reqData['color'] ?? false;
@@ -564,7 +565,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$cliente_id = $reqData['cliente_id'] ?? -1;
-
+ $resourceData = [];
if ($type == 'interior' || $type == 'guardas') {
@@ -584,6 +585,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
}
if ($type == 'guardas') {
+
$datosPedido->paginas_impresion = intval($reqData['paginas_impresion']) ?? 0;
// 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
@@ -597,16 +599,21 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$a_favor_fibra = $reqData['a_favor_fibra'] ?? false;
- $resourceData = $this->getCompIntData($type, $datosPedido, $papel_generico, $gramaje, $isColor, $isHq, $cliente_id, $datosTipolog, $a_favor_fibra);
+ $input_data = array(
+ 'uso' => $type,
+ 'tipo_impresion_id' => $tipo_impresion_id,
+ 'datosPedido' => $datosPedido,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $gramaje,
+ 'isColor' => $isColor,
+ 'isHq' => $isHq,
+ 'cliente_id' => $cliente_id,
+ 'datosTipolog' => $datosTipolog,
+ 'a_favor_fibra' => $a_favor_fibra
+ );
- $newTokenHash = csrf_hash();
- $csrfTokenName = csrf_token();
- $data = [
- 'lineas' => $resourceData,
- $csrfTokenName => $newTokenHash
- ];
+ $resourceData = PresupuestoService::obtenerComparadorPlana($input_data);
- return $this->respond($data);
} else if ($type == 'interior_rot') {
$paginas = (object)array(
@@ -628,36 +635,45 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
array_push($datosTipolog, $data);
}
- $resourceData = $this->getCompIntRotData($datosPedido, $papel_generico, $gramaje, $paginas, $cliente_id, $datosTipolog);
-
- $newTokenHash = csrf_hash();
- $csrfTokenName = csrf_token();
- $data = [
- 'lineas' => $resourceData,
- $csrfTokenName => $newTokenHash
+ $input_data = [
+ 'datosPedido' => $datosPedido,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $gramaje,
+ 'paginas' => $paginas,
+ 'cliente_id' => $cliente_id,
+ 'datosTipolog' => $datosTipolog
];
+
+ $resourceData = PresupuestoService::obtenerComparadorRotativa($input_data);
- return $this->respond($data);
} else if ($type == 'cubierta' || $type == 'sobrecubierta') {
$datosPedido->solapas = $reqData['solapas'];
$datosPedido->solapas_ancho = $reqData['solapas_ancho'];
$datosPedido->lomo = $reqData['lomo'];
- $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($type, $tipo_impresion_id, $datosPedido);
- $datosPedido->altoExteriores = PresupuestoService::getAltoTotalExteriores($type, $tipo_impresion_id, $datosPedido);
- // Cubierta y sobrecubierta siempre color HQ
- $resourceData = $this->getCompIntData($type, $datosPedido, $papel_generico, $gramaje, $isColor, 1, $cliente_id);
-
- $newTokenHash = csrf_hash();
- $csrfTokenName = csrf_token();
- $data = [
- 'lineas' => $resourceData,
- $csrfTokenName => $newTokenHash
- ];
-
- return $this->respond($data);
+ $input_data = array(
+ 'uso' => $type,
+ 'tipo_impresion_id' => $tipo_impresion_id,
+ 'datosPedido' => $datosPedido,
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $gramaje,
+ 'isColor' => 1, // Cubierta y sobrecubierta siempre color HQ
+ 'isHq' => 1,
+ 'cliente_id' => $cliente_id,
+ );
+
+ $resourceData = PresupuestoService::obtenerComparadorPlana($input_data);
}
+
+ $newTokenHash = csrf_hash();
+ $csrfTokenName = csrf_token();
+ $data = [
+ 'lineas' => $resourceData,
+ $csrfTokenName => $newTokenHash
+ ];
+
+ return $this->respond($data);
}
return $this->respond(Collection::datatable(
@@ -785,216 +801,75 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
return $viewData;
}
+
-
- private function getCompIntData($uso, $datosPedido, $papel_generico, $gramaje, $isColor, $isHq, $cliente_id, $datosTipolog = null, $a_favor_fibra = false)
- {
- $tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro');
-
- $opciones_papel = PresupuestoService::get_opciones_papel($uso, $isColor);
-
- // Se obtienen los papeles disponibles
- $papelimpresionmodel = new PapelImpresionModel();
- $papeles = $papelimpresionmodel->getIdPapelesImpresionForPresupuesto(
- papel_generico_id: $papel_generico['id'],
- gramaje: $gramaje,
- options: $opciones_papel
- );
-
- $lineas = array();
- // Para cada papel, se obtienen las maquinas disponibles
- foreach ($papeles as $papel) {
-
- $maquinamodel = new MaquinaModel();
- $maquinas = $maquinamodel->getMaquinaImpresionForPresupuesto(
- is_rotativa: 0,
- tarifa_tipo: $tipo,
- uso_tarifa: ($uso == 'guardas') ? 'interior' : $uso,
- tirada: $datosPedido->tirada + $datosPedido->merma,
- papel_impresion_id: $papel->id,
- );
-
- // Se recorren las máquinas y se calcula el coste de linea por cada una
- foreach ($maquinas as $maquina) {
-
-
- $data['uso'] = $uso;
- $data['tipo'] = $tipo;
- $data['datosPedido'] = $datosPedido;
- $data['cliente_id'] = $cliente_id;
- $data['papel'] = $papel;
- $data['opciones_papel'] = $opciones_papel;
- $data['maquina'] = $maquina;
- $data['papel_generico'] = $papel_generico;
- $data['isColor'] = $isColor;
- $data['a_favor_fibra'] = $a_favor_fibra;
- $data['datosTipolog'] = $datosTipolog;
- $data['gramaje'] = $gramaje;
-
- $linea = PresupuestoService::getLineaPresupuestoPlana($data);
-
- if(empty($linea))
- continue;
-
- array_push($lineas, $linea);
- }
- }
- return $lineas;
- }
-
+ /**
+ * Duplica un presupuesto dado por su ID.
+ *
+ * Esta función duplica un presupuesto y todas sus entidades relacionadas como acabados, encuadernaciones, manipulados,
+ * preimpresiones, direcciones y lineas. El presupuesto duplicado se marca como tal y a su título se le añade
+ * una cadena 'duplicado'. La función devuelve un array con un estado de éxito y el ID del nuevo presupuesto.
+ *
+ * @param int $id El ID del presupuesto a duplicar.
+ * @return array Un array asociativo que contiene una clave 'success' que indica el estado de éxito de la operación,
+ * y una clave 'id' que contiene el ID del nuevo presupuesto si la operación fue exitosa.
+ * Si ocurre una excepción, la clave 'success' será false y una clave 'message' contendrá el mensaje de la excepción.
+ * @throws \Exception Si ocurre un error durante la operación.
+ */
private function duplicarPresupuesto($id){
- try{
-
- $presupuesto = $this->model->find($id);
- $presupuesto->titulo = $presupuesto->titulo .' - ' . lang('Presupuestos.duplicado');
- $presupuesto->is_duplicado = 1;
- $new_id = $this->model->insert($presupuesto);
-
- $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
- foreach ($presupuestoAcabadosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $acabado) {
- $acabado->presupuesto_id = $new_id;
- $presupuestoAcabadosModel->insert($acabado);
- }
-
- $presupuestoEncuadernacionesModel = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
- foreach ($presupuestoEncuadernacionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $encuadernacion) {
- $encuadernacion->presupuesto_id = $new_id;
- $presupuestoEncuadernacionesModel->insert($encuadernacion);
- }
-
- $presupuestoManipuladosModel = model('App\Models\Presupuestos\PresupuestoManipuladosModel');
- foreach ($presupuestoManipuladosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $manipulado) {
- $manipulado->presupuesto_id = $new_id;
- $presupuestoManipuladosModel->insert($manipulado);
- }
-
- $presupuestoPreimpresionesModel = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel');
- foreach ($presupuestoPreimpresionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $preimpresion) {
- $preimpresion->presupuesto_id = $new_id;
- $presupuestoPreimpresionesModel->insert($preimpresion);
- }
-
- $presupuestoDireccionesModel = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
- foreach ($presupuestoDireccionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $direccion) {
- $direccion->presupuesto_id = $new_id;
- $presupuestoDireccionesModel->insert($direccion);
- }
-
- $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
- $presupuestoLineaModel->duplicateLineasPresupuesto($presupuesto->id, $new_id);
-
- return [
- 'success' => true,
- 'id' => $new_id
- ];
-
- }catch(\Exception $e){
- return [
- 'success' => false,
- 'message' => $e->getMessage()
- ];
- }
- }
-
-
-
- private function getCompIntRotData($datosPedido, $papel_generico, $gramaje, $paginas, $cliente_id, $datosTipolog = null)
- {
- $uso = 'interior';
-
- $tipo = $paginas->color > 0 ? 'color' : 'negro';
-
-
- $parametrosRotativa = (object)array(
- 'a_favor_fibra' => $datosPedido->a_favor_fibra,
- 'bnPages' => $paginas->negro,
- 'colorPages' => $paginas->color,
- 'rotativa_gota_negro' => 0,
- 'rotativa_gota_color' => 0,
- );
-
- $opciones_papel = array(
- 'rotativa' => 1,
- );
-
- $tipo = array();
- if ($paginas->color > 0) {
- $tipo = 'color';
- $opciones_papel['color'] = 1;
- }
- else {
- $opciones_papel['bn'] = 1;
- $tipo = 'negro';
- }
-
- // Se obtienen los papeles disponibles
- $papelimpresionmodel = new PapelImpresionModel();
- $papeles = $papelimpresionmodel->getIdPapelesImpresionForPresupuesto(
- papel_generico_id: $papel_generico['id'],
- gramaje: $gramaje,
- options: $opciones_papel
- );
-
- $lineas = array();
- // Para cada papel, se obtienen las maquinas disponibles
- foreach ($papeles as $papel) {
-
- $papelImpresionTipologiaModel = new \App\Models\Configuracion\PapelImpresionTipologiaModel();
- if (is_null($datosTipolog)) {
- $datosTipologias = $papelImpresionTipologiaModel
- ->findTipologiasForPapelImpresion($papel->id, $parametrosRotativa->colorPages > 0 ? 'color' : 'negro')
- ->get()->getResultObject();
-
-
- if (count($datosTipologias) == 0) {
- continue;
- }
- } else {
- $datosTipologias = $datosTipolog;
- }
-
- $parametrosRotativa->rotativa_gota_negro = $datosTipologias[0]->gota_negro;
- $parametrosRotativa->rotativa_gota_color = $datosTipologias[0]->gota_color;
- $parametrosRotativa->rotativa_negro = $datosTipologias[0]->negro;
- $parametrosRotativa->rotativa_cyan = $datosTipologias[0]->cyan;
- $parametrosRotativa->rotativa_magenta = $datosTipologias[0]->magenta;
- $parametrosRotativa->rotativa_amarillo = $datosTipologias[0]->amarillo;
-
- $maquinamodel = new MaquinaModel();
-
- $maquinas = $maquinamodel->getMaquinaImpresionForPresupuesto(
- is_rotativa: 1,
- tarifa_tipo: $tipo,
- uso_tarifa: $uso,
- tirada: $datosPedido->tirada + $datosPedido->merma,
- papel_impresion_id: $papel->id,
- );
-
- // Se recorren las máquinas y se calcula el coste de linea por cada una
- foreach ($maquinas as $maquina) {
-
- $data['uso'] = $uso;
- $data['tipo'] = $tipo;
- $data['datosPedido'] = $datosPedido;
- $data['cliente_id'] = $cliente_id;
- $data['papel'] = $papel;
- $data['maquina'] = $maquina;
- $data['papel_generico'] = $papel_generico;
- $data['parametrosRotativa'] = $parametrosRotativa;
- $data['paginas'] = $paginas;
- $data['gramaje'] = $gramaje;
-
- $linea = PresupuestoService::getLineaPresupuestoRotativa($data);
-
- if(empty($linea))
- continue;
-
- array_push($lineas, $linea);
- }
- }
- return $lineas;
- }
+ try{
+
+ $presupuesto = $this->model->find($id);
+ $presupuesto->titulo = $presupuesto->titulo .' - ' . lang('Presupuestos.duplicado');
+ $presupuesto->is_duplicado = 1;
+ $new_id = $this->model->insert($presupuesto);
+
+ $presupuestoAcabadosModel = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
+ foreach ($presupuestoAcabadosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $acabado) {
+ $acabado->presupuesto_id = $new_id;
+ $presupuestoAcabadosModel->insert($acabado);
+ }
+
+ $presupuestoEncuadernacionesModel = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
+ foreach ($presupuestoEncuadernacionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $encuadernacion) {
+ $encuadernacion->presupuesto_id = $new_id;
+ $presupuestoEncuadernacionesModel->insert($encuadernacion);
+ }
+
+ $presupuestoManipuladosModel = model('App\Models\Presupuestos\PresupuestoManipuladosModel');
+ foreach ($presupuestoManipuladosModel->where('presupuesto_id', $presupuesto->id)->findAll() as $manipulado) {
+ $manipulado->presupuesto_id = $new_id;
+ $presupuestoManipuladosModel->insert($manipulado);
+ }
+
+ $presupuestoPreimpresionesModel = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel');
+ foreach ($presupuestoPreimpresionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $preimpresion) {
+ $preimpresion->presupuesto_id = $new_id;
+ $presupuestoPreimpresionesModel->insert($preimpresion);
+ }
+
+ $presupuestoDireccionesModel = model('App\Models\Presupuestos\PresupuestoDireccionesModel');
+ foreach ($presupuestoDireccionesModel->where('presupuesto_id', $presupuesto->id)->findAll() as $direccion) {
+ $direccion->presupuesto_id = $new_id;
+ $presupuestoDireccionesModel->insert($direccion);
+ }
+
+ $presupuestoLineaModel = model('App\Models\Presupuestos\PresupuestoLineaModel');
+ $presupuestoLineaModel->duplicateLineasPresupuesto($presupuesto->id, $new_id);
+
+ return [
+ 'success' => true,
+ 'id' => $new_id
+ ];
+
+ }catch(\Exception $e){
+ return [
+ 'success' => false,
+ 'message' => $e->getMessage()
+ ];
+ }
+ }
public function allItemsSelect()
{
@@ -1163,8 +1038,6 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
}
-
-
protected function getPapelGenericoRotativaNegro()
{
$model = model('App\Models\Configuracion\PapelGenericoModel');
@@ -1319,20 +1192,7 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$lineas = (new PresupuestoLineaModel())->getLineasPresupuesto($presupuestoEntity->id);
$input_data = [];
- $input_data['tipo_impresion_id'] = $presupuestoEntity->tipo_impresion_id;
- $input_data['tirada'] = $presupuestoEntity->tirada;
- $input_data['merma'] = $presupuestoEntity->merma;
- $input_data['papel_formato_id'] = $presupuestoEntity->papel_formato_id;
- $input_data['papel_formato_personalizado'] = $presupuestoEntity->papel_formato_personalizado;
- $input_data['papel_formato_ancho'] = $presupuestoEntity->papel_formato_ancho;
- $input_data['papel_formato_alto'] = $presupuestoEntity->papel_formato_alto;
- $input_data['cliente_id'] = $presupuestoEntity->cliente_id;
- $input_data['solapas'] = $presupuestoEntity->solapas;
- $input_data['solapas_ancho'] = $presupuestoEntity->solapas_ancho;
- $input_data['solapas_sobrecubierta'] = $presupuestoEntity->solapas_sobrecubierta;
- $input_data['solapas_ancho_sobrecubierta'] = $presupuestoEntity->solapas_ancho_sobrecubierta;
- $input_data['lomo_cubierta'] = $presupuestoEntity->lomo_cubierta;
- $input_data['lomo_sobrecubierta'] = $presupuestoEntity->lomo_sobrecubierta;
+ $input_data['presupuesto'] = $presupuestoEntity;
return PresupuestoService::checkLineasPresupuesto($input_data, $lineas);
}
diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php
index aaa38007..04886d94 100755
--- a/ci4/app/Services/PresupuestoService.php
+++ b/ci4/app/Services/PresupuestoService.php
@@ -22,6 +22,7 @@ use App\Models\Presupuestos\PresupuestoDireccionesModel;
use App\Models\Tarifas\TarifaEnvioModel;
+
class PresupuestoService extends BaseService
{
/**
@@ -973,24 +974,91 @@ class PresupuestoService extends BaseService
public static function checkLineasPresupuesto($input_data, $array_lineas)
{
+
+ $data['tipo_impresion_id'] = ($input_data['presupuesto'])->tipo_impresion_id;
+ $data['tirada'] = ($input_data['presupuesto'])->tirada;
+ $data['merma'] = ($input_data['presupuesto'])->merma;
+ $data['papel_formato_id'] = ($input_data['presupuesto'])->papel_formato_id;
+ $data['papel_formato_personalizado'] = ($input_data['presupuesto'])->papel_formato_personalizado;
+ $data['papel_formato_ancho'] = ($input_data['presupuesto'])->papel_formato_ancho;
+ $data['papel_formato_alto'] = ($input_data['presupuesto'])->papel_formato_alto;
+ $data['cliente_id'] = ($input_data['presupuesto'])->cliente_id;
+ $data['solapas'] = ($input_data['presupuesto'])->solapas;
+ $data['solapas_ancho'] = ($input_data['presupuesto'])->solapas_ancho;
+ $data['solapas_sobrecubierta'] = ($input_data['presupuesto'])->solapas_sobrecubierta;
+ $data['solapas_ancho_sobrecubierta'] = ($input_data['presupuesto'])->solapas_ancho_sobrecubierta;
+ $data['lomo_cubierta'] = ($input_data['presupuesto'])->lomo_cubierta;
+ $data['lomo_sobrecubierta'] = ($input_data['presupuesto'])->lomo_sobrecubierta;
+
$cambios = false;
$lineas = [];
foreach ($array_lineas as $linea) {
- if (!PresupuestoService::checkMaquina($linea->maquina_id) || !PresupuestoService::checkPapelImpresion($linea->papel_impresion_id)) {
+ if (PresupuestoService::checkMaquina($linea->maquina_id) || !PresupuestoService::checkPapelImpresion($linea->papel_impresion_id)) {
// Hay que ver si es rotativa o plana
if(str_contains($linea->tipo, '_rot_')){
+ if(($input_data['presupuesto'])->papel_formato_personalizado == 0){
+ $papel_formato = (new PapelFormatoModel())->find(($input_data['presupuesto'])->papel_formato_id);
+ $ancho = $papel_formato->ancho;
+ $alto = $papel_formato->alto;
+ }
+ else
+ {
+ $ancho = ($input_data['presupuesto'])->papel_formato_ancho;
+ $alto = ($input_data['presupuesto'])->papel_formato_alto;
+ }
+
+ $papel_generico = (new PapelGenericoModel)->find($linea->papel_id);
+ $papel_generico = [
+ 'id' => $papel_generico->id,
+ 'nombre' => $papel_generico->nombre,
+ ];
+
+ $datos = [
+ 'datosPedido' => (object)array(
+ 'paginas' => ($input_data['presupuesto'])->paginas,
+ 'tirada' => ($input_data['presupuesto'])->tirada,
+ 'merma' => ($input_data['presupuesto'])->merma,
+ 'ancho' => $ancho,
+ 'alto' => $alto,
+ 'a_favor_fibra' => $linea->rotativa_a_favor_fibra,
+ 'isCosido' => (new TipoPresupuestoModel())->get_isCosido(($input_data['presupuesto'])->tipo_impresion_id),
+ ),
+ 'papel_generico' => $papel_generico,
+ 'gramaje' => $linea->gramaje,
+ 'paginas' => (object)array(
+ 'negro' => ($input_data['presupuesto'])->paginas - $linea->rotativa_pag_color,
+ 'color' => $linea->rotativa_pag_color,
+ ),
+ 'cliente_id' => ($input_data['presupuesto'])->cliente_id,
+ 'datosTipolog' => [(object)array(
+ 'negro' => $linea->rotativa_negro,
+ 'cyan' => $linea->rotativa_cyan,
+ 'magenta' => $linea->rotativa_magenta,
+ 'amarillo' => $linea->rotativa_amarillo,
+ 'cg' => $linea->rotativa_cg,
+ 'gota_negro' => $linea->rotativa_gota_negro,
+ 'gota_color' => $linea->rotativa_gota_color,
+ )]
+ ];
+
+ $comp_data = PresupuestoService::obtenerComparadorRotativa($datos);
+ // se ordena $comp_data usando el campo ['fields]['total_impresion']
+ usort($comp_data, function($a, $b) {
+ return $a['fields']['total_impresion'] <=> $b['fields']['total_impresion'];
+ });
+
}
else{
}
}
else{
- $nueva_linea = PresupuestoService::obtenerValorLineaPresupuesto($input_data, $linea);
+ $nueva_linea = PresupuestoService::obtenerValorLineaPresupuesto($data, $linea);
if(count($nueva_linea) >0){
if(round($nueva_linea['fields']['total_impresion'],2) != $linea->total_linea){
(new PresupuestoLineaModel())->updatePreciosLineasPresupuesto($linea->id, $nueva_linea);
@@ -1009,6 +1077,8 @@ class PresupuestoService extends BaseService
return [$cambios, $lineas];
}
+
+
private static function obtenerValorLineaPresupuesto($input_data, $linea){
$tipo_impresion_id = $input_data['tipo_impresion_id'];
@@ -1388,12 +1458,33 @@ class PresupuestoService extends BaseService
}
- private static function obtenerLineasRotativa($input_data){
+ // Funcion que obtiene el coste para impresión en rotativa
+ // y devuelve un array con los datos de la lineas
+ // Parametros de entrada: $input_data es un array con los siguientes datos:
+ // - paginas: objeto con las paginas a imprimir en color y negro
+ // - datosPedido: un objeto que contiene los siguientes campos
+ // * paginas: numero total de páginas
+ // * tirada: numero de ejemplares a imprimir
+ // * merma: número de ejemplares extra a imprimir
+ // * ancho: ancho del libro
+ // * alto: alto del libro
+ // * a_favor_fibra: dirección de la impresión
+ // * isCosido: indica si el libro es cosido o no
+ // - papel_generico: objeto que contiene el id y el nombre del papel generico
+ // - gramaje: gramaje del papel seleccionado
+ // - cliente_id: id del cliente al que va destinado el presupuesto
+ // - datosTipolog: datos referentes a las tintas
+ public static function obtenerComparadorRotativa($input_data){
- $uso = 'interior';
+ $paginas = $input_data['paginas'];
+ $datosPedido = $input_data['datosPedido'];
+ $gramaje = $input_data['gramaje'];
+ $papel_generico = $input_data['papel_generico'];
+ $cliente_id = $input_data['cliente_id'];
+ $datosTipolog = $input_data['datosTipolog'];
$tipo = $paginas->color > 0 ? 'color' : 'negro';
-
+ $uso = 'interior';
$parametrosRotativa = (object)array(
'a_favor_fibra' => $datosPedido->a_favor_fibra,
@@ -1460,19 +1551,20 @@ class PresupuestoService extends BaseService
papel_impresion_id: $papel->id,
);
+ $data['uso'] = $uso;
+ $data['tipo'] = $tipo;
+ $data['datosPedido'] = $datosPedido;
+ $data['cliente_id'] = $cliente_id;
+ $data['papel'] = $papel;
+ $data['papel_generico'] = $papel_generico;
+ $data['parametrosRotativa'] = $parametrosRotativa;
+ $data['paginas'] = $paginas;
+ $data['gramaje'] = $gramaje;
+
// Se recorren las máquinas y se calcula el coste de linea por cada una
foreach ($maquinas as $maquina) {
- $data['uso'] = $uso;
- $data['tipo'] = $tipo;
- $data['datosPedido'] = $datosPedido;
- $data['cliente_id'] = $cliente_id;
- $data['papel'] = $papel;
$data['maquina'] = $maquina;
- $data['papel_generico'] = $papel_generico;
- $data['parametrosRotativa'] = $parametrosRotativa;
- $data['paginas'] = $paginas;
- $data['gramaje'] = $gramaje;
$linea = PresupuestoService::getLineaPresupuestoRotativa($data);
@@ -1486,6 +1578,100 @@ class PresupuestoService extends BaseService
}
+ // Funcion que obtiene el coste para impresión en plana
+ // y devuelve un array con los datos de la lineas
+ // Parametros de entrada: $input_data es un array con los siguientes datos:
+ // - uso: 'interior', 'guardas', 'cubierta' o 'sobrecubierta'
+ // - tipo_impresion_id: id del tipo de impresion
+ // - datosPedido: un objeto que contiene los siguientes campos
+ // * paginas: numero total de páginas
+ // * tirada: numero de ejemplares a imprimir
+ // * merma: número de ejemplares extra a imprimir
+ // * ancho: ancho del libro
+ // * alto: alto del libro
+ // * a_favor_fibra: dirección de la impresión
+ // * isCosido: indica si el libro es cosido o no
+ // * solapas: (solo cubierta y sobrecubierta) indica si hay o no solapas
+ // * solapas_ancho: (solo cubierta y sobrecubierta) indica el ancho de las solapas
+ // * lomo: (solo cubierta y sobrecubierta) ancho del lomo del libro (o libro mas cubierta)
+ // - papel_generico: objeto que contiene el id y el nombre del papel generico
+ // - gramaje: gramaje del papel seleccionado
+ // - cliente_id: id del cliente al que va destinado el presupuesto
+ // - datosTipolog: datos referentes a las tintas (opcional)
+ // - a_favor_fibra: dirección de la impresión
+ public static function obtenerComparadorPlana($input_data){
+
+ $uso = $input_data['uso'];
+ $tipo_impresion_id = $input_data['tipo_impresion_id'];
+ $datosPedido = $input_data['datosPedido'];
+ $papel_generico = $input_data['papel_generico'];
+ $gramaje = $input_data['gramaje'];
+ $isColor = $input_data['isColor'];
+ $isHq = $input_data['isHq'];
+ $cliente_id = $input_data['cliente_id'];
+ $datosTipolog = $input_data['datosTipolog'] ?? null;
+ $a_favor_fibra = $datosPedido->a_favor_fibra ?? false;
+
+ $tipo = $isColor ? ($isHq ? 'colorhq' : 'color') : ($isHq ? 'negrohq' : 'negro');
+
+ if ($uso == 'cubierta' || $uso == 'sobrecubierta') {
+
+ $datosPedido->anchoExteriores = PresupuestoService::getAnchoTotalExteriores($uso, $tipo_impresion_id, $datosPedido);
+ $datosPedido->altoExteriores = PresupuestoService::getAltoTotalExteriores($uso, $tipo_impresion_id, $datosPedido);
+ }
+
+ $opciones_papel = PresupuestoService::get_opciones_papel($uso, $isColor);
+
+ // Se obtienen los papeles disponibles
+ $papelimpresionmodel = new PapelImpresionModel();
+ $papeles = $papelimpresionmodel->getIdPapelesImpresionForPresupuesto(
+ papel_generico_id: $papel_generico['id'],
+ gramaje: $gramaje,
+ options: $opciones_papel
+ );
+
+ $lineas = array();
+ // Para cada papel, se obtienen las maquinas disponibles
+ foreach ($papeles as $papel) {
+
+ $maquinamodel = new MaquinaModel();
+ $maquinas = $maquinamodel->getMaquinaImpresionForPresupuesto(
+ is_rotativa: 0,
+ tarifa_tipo: $tipo,
+ uso_tarifa: ($uso == 'guardas') ? 'interior' : $uso,
+ tirada: $datosPedido->tirada + $datosPedido->merma,
+ papel_impresion_id: $papel->id,
+ );
+
+ // Se recorren las máquinas y se calcula el coste de linea por cada una
+ foreach ($maquinas as $maquina) {
+
+
+ $data['uso'] = $uso;
+ $data['tipo'] = $tipo;
+ $data['datosPedido'] = $datosPedido;
+ $data['cliente_id'] = $cliente_id;
+ $data['papel'] = $papel;
+ $data['opciones_papel'] = $opciones_papel;
+ $data['maquina'] = $maquina;
+ $data['papel_generico'] = $papel_generico;
+ $data['isColor'] = $isColor;
+ $data['a_favor_fibra'] = $a_favor_fibra;
+ $data['datosTipolog'] = $datosTipolog;
+ $data['gramaje'] = $gramaje;
+
+ $linea = PresupuestoService::getLineaPresupuestoPlana($data);
+
+ if(empty($linea))
+ continue;
+
+ array_push($lineas, $linea);
+ }
+ }
+ return $lineas;
+ }
+
+
// Funcion que comprueba si existe una maquina
private static function checkMaquina($maquina_id){
diff --git a/xdebug.log b/xdebug.log
index 333ced7d..530326ba 100644
--- a/xdebug.log
+++ b/xdebug.log
@@ -79304,3 +79304,3863 @@
[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-03-26 20:20:58.355497
+[22] Log opened at 2024-03-27 07:17:00.254415
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 07:17:00.323699
+
+[22] Log opened at 2024-03-27 07:17:00.581079
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 07:17:00.621210
+
+[42] Log opened at 2024-03-27 07:17:46.674538
+[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42'
+[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[42] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log opened at 2024-03-27 07:22:40.923341
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-27 07:22:44.031181
+
+[42] Log closed at 2024-03-27 07:23:52.673709
+
+[24] Log opened at 2024-03-27 07:24:06.561582
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 07:24:09.491780
+
+[25] Log opened at 2024-03-27 07:24:48.112290
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 07:24:50.836696
+
+[25] Log opened at 2024-03-27 07:24:50.882613
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 07:24:54.216946
+
+[25] Log opened at 2024-03-27 07:24:54.429663
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 07:24:55.707941
+
+[23] Log opened at 2024-03-27 07:24:56.056868
+[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23'
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 07:24:57.335669
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[23] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[23] Log closed at 2024-03-27 07:24:58.003341
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:01.405648
+
+[26] Log opened at 2024-03-27 07:25:01.468138
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:06.080627
+
+[26] Log opened at 2024-03-27 07:25:06.287030
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:07.393836
+
+[26] Log opened at 2024-03-27 07:25:07.425970
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[357] Log opened at 2024-03-27 07:25:07.426406
+[355] Log opened at 2024-03-27 07:25:07.426834
+[354] Log opened at 2024-03-27 07:25:07.426720
+[356] Log opened at 2024-03-27 07:25:07.426931
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log opened at 2024-03-27 07:25:07.814891
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:08.969502
+
+[26] Log opened at 2024-03-27 07:25:09.020691
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 07:25:09.465944
+
+[356] Log opened at 2024-03-27 07:25:09.532876
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-03-27 07:25:10.086584
+
+[355] Log opened at 2024-03-27 07:25:10.122278
+[355] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.355'
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 07:25:10.182722
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 07:25:10.570149
+
+[358] Log opened at 2024-03-27 07:25:10.628657
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 07:25:11.078281
+
+[354] Log opened at 2024-03-27 07:25:11.193820
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 07:25:13.779577
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 07:25:17.060224
+
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[355] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[355] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[355] Log closed at 2024-03-27 07:25:20.376773
+
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 07:25:23.765010
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 07:25:27.530028
+
+[27] Log opened at 2024-03-27 07:26:39.572370
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 10
+[27] [Step Debug] ->
+
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- stack_get -i 11
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- context_names -i 12 -d 0
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- context_get -i 13 -d 0 -c 0
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 14
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-03-27 07:26:45.915119
+
+[27] Log opened at 2024-03-27 07:26:46.071266
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 10
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-03-27 07:26:47.133895
+
+[27] Log opened at 2024-03-27 07:26:47.218239
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 21
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[27] [Step Debug] ->
+
+[27] [Step Debug] <- run -i 10
+[27] [Step Debug] ->
+
+[27] Log closed at 2024-03-27 07:26:49.076779
+
+[24] Log opened at 2024-03-27 08:43:41.301300
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:05.068369
+
+[356] Log opened at 2024-03-27 08:44:05.337434
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log opened at 2024-03-27 08:44:05.921348
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 08:44:05.970674
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:44:05.997872
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 08:44:06.011934
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 08:44:06.133413
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:44:06.538838
+
+[356] Log opened at 2024-03-27 08:44:06.566299
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:07.438487
+
+[24] Log opened at 2024-03-27 08:44:07.708418
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:44:08.527054
+
+[357] Log opened at 2024-03-27 08:44:08.542133
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:44:09.031446
+
+[26] Log opened at 2024-03-27 08:44:09.046565
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:44:09.558659
+
+[25] Log opened at 2024-03-27 08:44:09.668148
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:44:10.120293
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:44:10.685377
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:11.152979
+
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:44:11.734086
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:44:12.219452
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:44:12.726434
+
+[22] Log opened at 2024-03-27 08:44:12.799747
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log opened at 2024-03-27 08:44:12.925920
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 08:44:12.958275
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 08:44:13.155231
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:44:14.809779
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:44:14.959994
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:44:15.566349
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:44:16.322020
+
+[358] Log opened at 2024-03-27 08:44:36.358661
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 08:44:44.674107
+
+[358] Log opened at 2024-03-27 08:44:44.807465
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 08:44:45.942704
+
+[359] Log opened at 2024-03-27 08:44:46.251419
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:44:46.374795
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:44:47.499831
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:44:47.925918
+
+[22] Log opened at 2024-03-27 08:45:01.416984
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:45:09.807320
+
+[25] Log opened at 2024-03-27 08:45:09.960356
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:11.089406
+
+[25] Log opened at 2024-03-27 08:45:11.395271
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 08:45:11.643278
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 08:45:11.663381
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-03-27 08:45:11.691724
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:12.912036
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:45:13.128129
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:45:13.772375
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:45:14.752732
+
+[25] Log opened at 2024-03-27 08:45:17.339771
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-27 08:45:20.281508
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:20.953674
+
+[25] Log opened at 2024-03-27 08:45:23.627709
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:45:23.797114
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:26.387647
+
+[25] Log opened at 2024-03-27 08:45:28.525025
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:45:31.344925
+
+[26] Log opened at 2024-03-27 08:47:35.242029
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:47:44.392162
+
+[26] Log opened at 2024-03-27 08:47:44.568388
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:47:45.871191
+
+[357] Log opened at 2024-03-27 08:47:46.157270
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log opened at 2024-03-27 08:47:46.387172
+[358] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.358'
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 08:47:46.403463
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:47:46.420315
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:47:47.556894
+
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[358] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[358] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[358] Log closed at 2024-03-27 08:47:47.815074
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:47:48.673600
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:47:49.615822
+
+[356] Log opened at 2024-03-27 08:47:56.173655
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:48:10.179300
+
+[356] Log opened at 2024-03-27 08:48:10.343863
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-27 08:48:10.365939
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[25] Log opened at 2024-03-27 08:48:10.366825
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[22] Log opened at 2024-03-27 08:48:10.368096
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[357] Log opened at 2024-03-27 08:48:10.370476
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[26] Log opened at 2024-03-27 08:48:10.371603
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:48:10.846956
+
+[356] Log opened at 2024-03-27 08:48:10.867617
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:48:11.713591
+
+[26] Log opened at 2024-03-27 08:48:11.729287
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:48:12.254868
+
+[22] Log opened at 2024-03-27 08:48:12.269803
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:48:12.771497
+
+[357] Log opened at 2024-03-27 08:48:12.789697
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:48:13.897888
+
+[25] Log opened at 2024-03-27 08:48:13.912145
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:48:14.419207
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:48:14.756839
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:48:15.140890
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:48:15.603192
+
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:48:16.078227
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:48:16.651266
+
+[357] Log opened at 2024-03-27 08:48:16.704004
+[357] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.357'
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 08:48:16.821109
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 08:48:16.847458
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 08:48:16.987320
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[357] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[357] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[357] Log closed at 2024-03-27 08:48:18.299130
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 08:48:18.397568
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 08:48:19.200610
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:48:20.033379
+
+[359] Log opened at 2024-03-27 08:52:09.329094
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:52:31.042313
+
+[359] Log opened at 2024-03-27 08:52:31.281241
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] Log opened at 2024-03-27 08:52:31.293138
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] Log opened at 2024-03-27 08:52:31.293576
+[27] Log opened at 2024-03-27 08:52:31.294278
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[360] Log opened at 2024-03-27 08:52:31.295205
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[356] Log opened at 2024-03-27 08:52:31.299805
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:52:31.905938
+
+[359] Log opened at 2024-03-27 08:52:31.922715
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:52:32.959371
+
+[356] Log opened at 2024-03-27 08:52:32.976539
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:52:33.513063
+
+[27] Log opened at 2024-03-27 08:52:33.528138
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:52:34.645315
+
+[24] Log opened at 2024-03-27 08:52:34.659078
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:52:35.156296
+
+[354] Log opened at 2024-03-27 08:52:35.172612
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:52:35.682421
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:52:36.082552
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:52:36.481407
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:52:36.996815
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:52:37.554193
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:52:38.033933
+
+[356] Log opened at 2024-03-27 08:52:38.115558
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log opened at 2024-03-27 08:52:38.251033
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log opened at 2024-03-27 08:52:38.283305
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log opened at 2024-03-27 08:52:38.442938
+[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24'
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:52:39.955242
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:52:40.224394
+
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:52:40.673032
+
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[24] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[24] Log closed at 2024-03-27 08:52:41.366996
+
+[25] Log opened at 2024-03-27 08:57:04.752427
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:57:19.034571
+
+[25] Log opened at 2024-03-27 08:57:19.242663
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 08:57:19.254366
+[354] Log opened at 2024-03-27 08:57:19.254475
+[356] Log opened at 2024-03-27 08:57:19.254527
+[27] Log opened at 2024-03-27 08:57:19.254805
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[360] Log opened at 2024-03-27 08:57:19.255378
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:57:19.806641
+
+[25] Log opened at 2024-03-27 08:57:19.826134
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:57:20.628878
+
+[354] Log opened at 2024-03-27 08:57:20.644448
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:57:21.166520
+
+[359] Log opened at 2024-03-27 08:57:21.181672
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:57:21.663445
+
+[356] Log opened at 2024-03-27 08:57:21.678533
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:57:22.147501
+
+[360] Log opened at 2024-03-27 08:57:22.164449
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:57:22.648469
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 08:57:22.973198
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:57:23.357767
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 08:57:23.937236
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:57:24.565845
+
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:57:25.174243
+
+[27] Log opened at 2024-03-27 08:57:25.241689
+[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27'
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log opened at 2024-03-27 08:57:25.366247
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 08:57:25.398450
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log opened at 2024-03-27 08:57:25.561578
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[27] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[27] Log closed at 2024-03-27 08:57:26.891366
+
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 08:57:27.119690
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 08:57:27.934540
+
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 08:57:29.040024
+
+[26] Log opened at 2024-03-27 10:53:37.657270
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:53:50.152971
+
+[26] Log opened at 2024-03-27 10:53:50.453292
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[362] Log opened at 2024-03-27 10:53:50.454605
+[22] Log opened at 2024-03-27 10:53:50.454516
+[359] Log opened at 2024-03-27 10:53:50.455228
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-27 10:53:50.456598
+[361] Log opened at 2024-03-27 10:53:50.457926
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:53:52.168696
+
+[26] Log opened at 2024-03-27 10:53:52.183103
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:53:52.680390
+
+[361] Log opened at 2024-03-27 10:53:52.697969
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:53:53.170795
+
+[362] Log opened at 2024-03-27 10:53:53.188261
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:53:53.661126
+
+[25] Log opened at 2024-03-27 10:53:53.679930
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:53:54.133435
+
+[22] Log opened at 2024-03-27 10:53:54.144895
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:53:54.611421
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:53:54.835133
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:53:54.977828
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:53:55.590383
+
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:53:56.143589
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:53:56.623542
+
+[359] Log opened at 2024-03-27 10:53:56.680070
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log opened at 2024-03-27 10:53:56.795410
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 10:53:56.820156
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 10:53:56.970534
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:53:58.253108
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:53:58.329323
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:53:59.270036
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:00.059225
+
+[354] Log opened at 2024-03-27 10:54:06.587825
+[354] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.354'
+[363] Log opened at 2024-03-27 10:54:06.589192
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[354] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 10:54:07.819865
+
+[354] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[354] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[354] Log closed at 2024-03-27 10:54:07.822137
+
+[360] Log opened at 2024-03-27 10:54:07.876184
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 10:54:08.067024
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 10:54:10.219834
+
+[356] Log closed at 2024-03-27 10:54:10.222051
+
+[26] Log opened at 2024-03-27 10:54:10.801611
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:54:21.529388
+
+[26] Log opened at 2024-03-27 10:54:21.960264
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] Log opened at 2024-03-27 10:54:21.968267
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[359] Log opened at 2024-03-27 10:54:21.970370
+[22] Log opened at 2024-03-27 10:54:21.970020
+[361] Log opened at 2024-03-27 10:54:21.970600
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 10:54:21.973317
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:54:22.471069
+
+[26] Log opened at 2024-03-27 10:54:22.490916
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:23.273617
+
+[25] Log opened at 2024-03-27 10:54:23.290341
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 10:54:23.719919
+
+[363] Log opened at 2024-03-27 10:54:23.735240
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:54:24.011550
+
+[361] Log opened at 2024-03-27 10:54:24.026682
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:54:24.970639
+
+[22] Log opened at 2024-03-27 10:54:24.986014
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:54:25.451410
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:54:25.767125
+
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:26.146518
+
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 10:54:26.631457
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:54:27.102889
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:54:27.569575
+
+[363] Log opened at 2024-03-27 10:54:27.655280
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log opened at 2024-03-27 10:54:27.806098
+[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25'
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] Log opened at 2024-03-27 10:54:27.808599
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log opened at 2024-03-27 10:54:27.960571
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[25] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[25] Log closed at 2024-03-27 10:54:29.067240
+
+[363] Log closed at 2024-03-27 10:54:29.088104
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:54:29.691167
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 10:54:30.407267
+
+[360] Log opened at 2024-03-27 10:55:13.073105
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log opened at 2024-03-27 10:55:22.962050
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 10:55:23.870658
+
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 10:55:32.591636
+
+[356] Log opened at 2024-03-27 10:55:32.820220
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] Log opened at 2024-03-27 10:55:32.829400
+[359] Log opened at 2024-03-27 10:55:32.829293
+[26] Log opened at 2024-03-27 10:55:32.829441
+[362] Log opened at 2024-03-27 10:55:32.829546
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[364] Log opened at 2024-03-27 10:55:32.829931
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 10:55:33.327346
+
+[356] Log opened at 2024-03-27 10:55:33.346387
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:55:34.222668
+
+[359] Log opened at 2024-03-27 10:55:34.238374
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:55:34.564942
+
+[361] Log opened at 2024-03-27 10:55:34.581109
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:55:35.529174
+
+[362] Log opened at 2024-03-27 10:55:35.544030
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:55:35.869718
+
+[26] Log opened at 2024-03-27 10:55:35.884939
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[356] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] Log closed at 2024-03-27 10:55:36.216488
+
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 10:55:36.693020
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:55:37.074960
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:55:37.530635
+
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:55:37.994327
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:55:38.467337
+
+[26] Log opened at 2024-03-27 10:55:38.534600
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 10:55:38.654626
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log opened at 2024-03-27 10:55:38.681457
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log opened at 2024-03-27 10:55:38.837180
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 10:55:40.134193
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 10:55:40.198206
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 10:55:40.896294
+
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[362] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[362] Log closed at 2024-03-27 10:55:41.728801
+
+[22] Log opened at 2024-03-27 11:08:32.679624
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 996
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error"
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- step_into -i 10
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 11
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 12
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 13
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 14 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 16 -n "$input_data[\"presupuesto\"]" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 17 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 18 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 19 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 20 -n "$input_data[\"presupuesto\"]" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 21 -n "$input_data['presupuesto']->attributes" -p 0 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- step_over -i 22
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 23
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 24 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 25 -n "$input_data['presupuesto']->attributes" -p 0 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 26 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 27 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 28 -n "$input_data" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 29 -d 220001
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 998
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 31 -d 220006
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 33 -n "$papel_generico" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 34 -n "$datos" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 35 -n "$cliente_id" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 36 -n "$datosTipolog" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 38 -d 220007
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 39 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[22] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 40
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 41
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 42 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 43 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 44 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 45
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 46
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- property_get -i 47 -n "$input_data['presupuesto']" -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_names -i 48 -d 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- context_get -i 49 -d 0 -c 0
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- run -i 50
+[365] Log opened at 2024-03-27 11:39:57.605461
+[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365'
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_remove -i 51 -d 220007
+[22] [Step Debug] ->
+
+[22] Log closed at 2024-03-27 11:40:03.209525
+
+[365] [Step Debug] <- step_into -i 11
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- stack_get -i 12
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_names -i 14 -d 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/httpdocs/index.php -n 3
+[365] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_remove -i 17 -d 3650007
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- run -i 18
+[365] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- stack_get -i 19
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- property_get -i 20 -n "$input_data['presupuesto']" -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_names -i 21 -d 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- run -i 23
+[365] [Step Debug] ->
+
+[365] Log closed at 2024-03-27 11:40:21.899947
+
+[356] Log opened at 2024-03-27 11:40:49.107007
+[356] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.356'
+[356] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[356] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- step_into -i 11
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- stack_get -i 12
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- context_names -i 14 -d 0
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- run -i 16
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- stack_get -i 17
+[356] [Step Debug] ->
+
+[356] [Step Debug] <- context_names -i 18 -d 0
+[356] [Step Debug] ->
+
+[364] Log opened at 2024-03-27 11:41:21.750527
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- step_into -i 11
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- stack_get -i 12
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_names -i 14 -d 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[364] [Step Debug] ->
+
+[356] [Step Debug] <- stop -i 19
+[364] [Step Debug] <- stop -i 16
+[364] [Step Debug] ->
+
+[356] [Step Debug] ->
+
+[356] [Step Debug] ->
+
+[364] [Step Debug] ->
+
+[356] [Step Debug] ->
+
+[364] Log closed at 2024-03-27 11:41:23.848382
+
+[356] [Step Debug] ->
+
+[356] Log closed at 2024-03-27 11:41:23.990390
+
+[364] Log opened at 2024-03-27 11:41:28.128255
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1049
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- step_into -i 11
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- stack_get -i 12
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_names -i 14 -d 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- run -i 16
+[364] [Step Debug] ->
+
+[364] [Step Debug] ->
+
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- stack_get -i 17
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- property_get -i 18 -n "$input_data['presupuesto']" -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_names -i 19 -d 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[364] [Step Debug] ->
+
+[364] [Step Debug] <- run -i 21
+[364] [Step Debug] ->
+
+[364] Log closed at 2024-03-27 11:41:41.304903
+
+[26] Log opened at 2024-03-27 11:42:30.451875
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- step_into -i 11
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 12
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- property_get -i 13 -n "$input_data['presupuesto']" -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 14 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_get -i 15 -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 16
+[26] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 17
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- property_get -i 18 -n "$input_data['presupuesto']" -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 19 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_get -i 20 -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 21
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- stack_get -i 22
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- property_get -i 23 -n "$input_data['presupuesto']" -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_names -i 24 -d 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[26] [Step Debug] ->
+
+[26] [Step Debug] <- run -i 26
+[26] [Step Debug] ->
+
+[26] Log closed at 2024-03-27 11:42:47.629582
+
+[359] Log opened at 2024-03-27 11:42:53.153982
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- step_into -i 12
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- stack_get -i 13
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- property_get -i 14 -n "$input_data['presupuesto']" -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_names -i 15 -d 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- run -i 17
+[359] [Step Debug] ->
+
+[359] [Step Debug] ->
+
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- stack_get -i 18
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- property_get -i 19 -n "$input_data['presupuesto']" -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_names -i 20 -d 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- run -i 22
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- stack_get -i 23
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_names -i 24 -d 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- context_get -i 25 -d 0 -c 0
+[359] [Step Debug] ->
+
+[359] [Step Debug] <- run -i 26
+[359] [Step Debug] ->
+
+[359] Log closed at 2024-03-27 11:43:17.286667
+
+[361] Log opened at 2024-03-27 11:43:37.375326
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1050
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- step_into -i 12
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 13
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 14 -n "$input_data['presupuesto']" -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_names -i 15 -d 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 16 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- run -i 17
+[361] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 18
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 19 -n "$input_data['presupuesto']" -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_names -i 20 -d 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 21 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- run -i 22
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 23
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 24 -n "$input_data['presupuesto']" -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_names -i 25 -d 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 26 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 27 -n "$comp_data[0]" -p 0 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- property_get -i 28 -n "$comp_data[0][\"fields\"]" -p 0 -d 0 -c 0
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- run -i 29
+[361] [Step Debug] ->
+
+[361] Log closed at 2024-03-27 11:46:12.112306
+
+[361] Log opened at 2024-03-27 11:46:12.389818
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- step_into -i 11
+[361] [Step Debug] ->
+
+[361] [Step Debug] <- stack_get -i 12
+[361] [Step Debug] ->
+
+[363] Log opened at 2024-03-27 11:46:12.852774
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[360] Log opened at 2024-03-27 11:46:12.854185
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[22] Log opened at 2024-03-27 11:46:12.854333
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] Log opened at 2024-03-27 11:46:12.859545
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.362'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[362] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[365] Log opened at 2024-03-27 11:46:12.879080
+[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365'
+[22] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[362] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[360] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[360] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[365] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] ->
+
+[363] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[363] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[362] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[365] [Step Debug] ->
+
+[362] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[362] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[365] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[362] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[363] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[362] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[365] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[360] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[362] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[365] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[365] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[363] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[365] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] ->
+
+[363] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[362] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[363] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[361] [Step Debug] <- context_names -i 13 -d 0
+[365] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[363] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[365] [Step Debug] ->
+
+[365] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[363] [Step Debug] <- step_into -i 19
+[360] [Step Debug] <- step_into -i 19
+[22] [Step Debug] <- step_into -i 19
+[362] [Step Debug] <- step_into -i 19
+[365] [Step Debug] <- step_into -i 19
+[363] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[361] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[361] [Step Debug] ->
+
+[362] [Step Debug] <- stack_get -i 20
+[362] [Step Debug] ->
+
+[363] [Step Debug] <- stack_get -i 20
+[363] [Step Debug] ->
+
+[365] [Step Debug] <- stack_get -i 20
+[365] [Step Debug] ->
+
+[22] [Step Debug] <- stack_get -i 20
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- stack_get -i 20
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_names -i 21 -d 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_get -i 22 -d 0 -c 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- run -i 23
+[360] [Step Debug] ->
+
+[360] Log closed at 2024-03-27 11:46:20.687032
+
+[360] Log opened at 2024-03-27 11:46:20.702384
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- step_into -i 11
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- stack_get -i 12
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_names -i 13 -d 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- run -i 15
+[360] [Step Debug] ->
+
+[360] Log closed at 2024-03-27 11:46:26.565817
+
+[360] Log opened at 2024-03-27 11:46:26.585275
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 1 -n max_children -v 100
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 2 -n max_data -v 8192
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 997
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error"
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- step_into -i 11
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- stack_get -i 12
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_names -i 13 -d 0
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- context_get -i 14 -d 0 -c 0
+[360] [Step Debug] ->
+
+[361] [Step Debug] <- breakpoint_remove -i 15 -d 3610008
+[363] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[362] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[365] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[22] [Step Debug] <- breakpoint_remove -i 21 -d 3650009
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_remove -i 15 -d 3600014
+[360] [Step Debug] ->
+
+[360] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[365] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[361] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051
+[361] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[361] [Step Debug] <- stop -i 17
+[363] [Step Debug] <- stop -i 22
+[362] [Step Debug] <- stop -i 22
+[22] [Step Debug] <- stop -i 22
+[365] [Step Debug] <- stop -i 23
+[361] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[360] [Step Debug] <- stop -i 17
+[365] [Step Debug] ->
+
+[360] [Step Debug] ->
+
+[361] [Step Debug] ->
+
+[22] [Step Debug] ->
+
+[362] [Step Debug] ->
+
+[363] [Step Debug] ->
+
+[365] [Step Debug] ->
+
+[22] Log closed at 2024-03-27 11:46:46.024560
+
+[361] Log closed at 2024-03-27 11:46:46.024560
+
+[362] Log closed at 2024-03-27 11:46:46.025098
+
+[363] Log closed at 2024-03-27 11:46:46.025127
+
+[365] Log closed at 2024-03-27 11:46:46.025304
+
+[360] [Step Debug] ->
+
+[360] Log closed at 2024-03-27 11:46:46.027314
+
+[22] Log opened at 2024-03-27 11:46:46.051699
+[365] Log opened at 2024-03-27 11:46:46.051713
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[365] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.365'
+[361] Log opened at 2024-03-27 11:46:46.053768
+[361] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.361'
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[365] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[365] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[365] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[365] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[365] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[365] Log closed at 2024-03-27 11:46:47.806669
+
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 11:46:48.572485
+
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[361] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[361] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[361] Log closed at 2024-03-27 11:46:49.056482
+
+[22] Log opened at 2024-03-27 11:46:49.368707
+[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22'
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log opened at 2024-03-27 11:46:49.387755
+[360] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.360'
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[22] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[22] Log closed at 2024-03-27 11:46:50.919377
+
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[360] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[360] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[360] Log closed at 2024-03-27 11:46:51.626515
+
+[364] Log opened at 2024-03-27 11:48:19.995350
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:20.845746
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:22.900629
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:23.814115
+
+[364] Log opened at 2024-03-27 11:48:25.004068
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:25.033215
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:26.834438
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:27.723566
+
+[364] Log opened at 2024-03-27 11:48:29.298322
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:30.415881
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 11:48:30.482783
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:31.381979
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:32.059159
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 11:48:33.048187
+
+[364] Log opened at 2024-03-27 11:48:35.096951
+[364] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.364'
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log opened at 2024-03-27 11:48:36.265659
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log opened at 2024-03-27 11:48:36.325954
+[359] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.359'
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[364] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[364] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[364] Log closed at 2024-03-27 11:48:37.228052
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:38.032637
+
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[359] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[359] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[359] Log closed at 2024-03-27 11:48:38.736946
+
+[26] Log opened at 2024-03-27 11:48:42.933522
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:44.106620
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:45.186721
+
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:47.136770
+
+[26] Log opened at 2024-03-27 11:48:49.086228
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:49.110803
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:50.830925
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:51.693782
+
+[26] Log opened at 2024-03-27 11:48:52.127443
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:53.449140
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 11:48:53.503718
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:54.308607
+
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:55.118354
+
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 11:48:56.147506
+
+[26] Log opened at 2024-03-27 11:48:56.662115
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log opened at 2024-03-27 11:48:58.173035
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 11:48:58.211841
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:48:59.003463
+
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:48:59.723786
+
+[366] Log opened at 2024-03-27 11:49:00.236574
+[366] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.366'
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 11:49:00.320715
+
+[26] Log opened at 2024-03-27 11:49:01.577620
+[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26'
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log opened at 2024-03-27 11:49:01.626067
+[363] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.363'
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[366] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[366] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[366] Log closed at 2024-03-27 11:49:02.238223
+
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[363] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[363] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[363] Log closed at 2024-03-27 11:49:03.274739
+
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003.
+[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29).
+[26] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+[26] Log closed at 2024-03-27 11:49:03.958939
+