diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php index 04886d94..cc0f6d2d 100755 --- a/ci4/app/Services/PresupuestoService.php +++ b/ci4/app/Services/PresupuestoService.php @@ -971,6 +971,12 @@ class PresupuestoService extends BaseService } + public static function actualizarResumenPresupuesto($presupuesto_id) + { + $presupuesto = (new PresupuestoModel())->find($presupuesto_id); + $lineas = (new LineaPresupuestoModel())->where('presupuesto_id', $presupuesto_id)->findAll(); + + } public static function checkLineasPresupuesto($input_data, $array_lineas) { @@ -996,28 +1002,30 @@ class PresupuestoService extends BaseService foreach ($array_lineas as $linea) { - if (PresupuestoService::checkMaquina($linea->maquina_id) || !PresupuestoService::checkPapelImpresion($linea->papel_impresion_id)) { + // Si el papel o la máquina no existen, se utiliza la más barata del comparador + if (!PresupuestoService::checkMaquina($linea->maquina_id) || !PresupuestoService::checkPapelImpresion($linea->papel_impresion_id)) { + 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, + ]; + // Hay que ver si es rotativa o plana + // Si es rotativa 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, @@ -1046,17 +1054,82 @@ class PresupuestoService extends BaseService )] ]; - $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']; - }); - + $comp_data = PresupuestoService::obtenerComparadorRotativa($datos); } + // Si es plana else{ + + $datos = [ + 'tipo_impresion_id' => $data['tipo_impresion_id'], + '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), + ), + 'a_favor_fibra' => $linea->rotativa_a_favor_fibra, + 'papel_generico' => $papel_generico, + 'gramaje' => $linea->gramaje, + '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, + )] + ]; + + // si la línea es cubierta o sobrecubierta, es HQ y color + if( str_contains($linea->tipo, 'cubierta') ){ + $datos['isColor'] = true; + $datos['isHq'] = true; + + // además se añade los campos de lomo y solapas y el uso + if( str_contains($linea->tipo, 'sobrecubierta') ){ + $datos['datosPedido']->solapas = ($input_data['presupuesto'])->solapas_sobrecubierta; + $datos['datosPedido']->solapas_ancho = ($input_data['presupuesto'])->solapas_ancho_sobrecubierta; + $datos['datosPedido']->lomo = ($input_data['presupuesto'])->lomo_sobrecubierta; + $datos['uso'] = 'sobrecubierta'; + } + else{ + $datos['datosPedido']->solapas = ($input_data['presupuesto'])->solapas; + $datos['datosPedido']->solapas_ancho = ($input_data['presupuesto'])->solapas_ancho; + $datos['datosPedido']->lomo = ($input_data['presupuesto'])->lomo_cubierta; + $datos['uso'] = 'cubierta'; + } + } + else{ + $datos['isColor'] = str_contains($linea->tipo, '_color') ? true : false; + $datos['isHq'] = str_contains($linea->tipo, 'hq') ? true : false; + $datos['uso'] = 'interior'; + } + + if( str_contains($linea->tipo, 'guardas') ){ + $datos['uso'] = 'guardas'; + $datos['datosPedido']->paginas_impresion = linea->paginas_impresion; + } + + $comp_data = PresupuestoService::obtenerComparadorPlana($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']; + }); + (new PresupuestoLineaModel())->updatePreciosLineasPresupuesto($linea->id, $comp_data[0]); + $linea_to_save = (new PresupuestoLineaModel())->find($linea->id); + $cambios = true; + array_push($lineas, $linea_to_save); } + // Si existe el papel y la máquina, se recalcula el precio con los mismos + // parámetros y se comprueba else{ $nueva_linea = PresupuestoService::obtenerValorLineaPresupuesto($data, $linea); if(count($nueva_linea) >0){ diff --git a/xdebug.log b/xdebug.log index 530326ba..ed0a6fad 100644 --- a/xdebug.log +++ b/xdebug.log @@ -83164,3 +83164,7710 @@ [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 +[22] Log opened at 2024-03-31 16:17:26.048070 +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:17:41.679376 + +[23] Log opened at 2024-03-31 16:17:54.647830 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:17:56.929639 + +[23] Log opened at 2024-03-31 16:17:56.970408 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:18:00.788359 + +[27] Log opened at 2024-03-31 16:18:01.874960 +[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] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-03-31 16:18:12.862648 + +[24] Log opened at 2024-03-31 16:18:13.324686 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:18:15.752017 + +[31] Log opened at 2024-03-31 16:18:34.077954 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:18:36.950096 + +[31] Log opened at 2024-03-31 16:18:36.974665 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:18:42.127561 + +[34] Log opened at 2024-03-31 16:18:42.223545 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-03-31 16:18:42.232762 +[33] Log opened at 2024-03-31 16:18:42.233049 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:18:42.236769 +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:18:43.054958 + +[22] Log opened at 2024-03-31 16:18:43.071996 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 16:18:43.073219 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] Log opened at 2024-03-31 16:18:43.226289 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:18:43.344599 + +[31] Log opened at 2024-03-31 16:18:43.382739 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:18:43.840243 + +[33] Log opened at 2024-03-31 16:18:43.857241 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:18:44.198035 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:18:44.789273 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:18:44.982290 + +[22] Log opened at 2024-03-31 16:18:44.992849 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:18:45.178999 + +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:18:45.410648 + +[25] Log opened at 2024-03-31 16:18:45.425547 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:18:46.386402 + +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:18:47.740131 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:18:49.273128 + +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:18:50.914100 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:18:52.386256 + +[23] Log opened at 2024-03-31 16:19:01.012853 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:19:04.332021 + +[23] Log opened at 2024-03-31 16:19:04.419643 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:19:05.570595 + +[31] Log opened at 2024-03-31 16:19:05.748359 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 16:19:05.859601 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:19:07.078204 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:19:07.474940 + +[31] Log opened at 2024-03-31 16:19:10.187843 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:19:18.688105 + +[31] Log opened at 2024-03-31 16:19:18.788230 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] Log opened at 2024-03-31 16:19:18.800252 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[25] Log opened at 2024-03-31 16:19:18.800606 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[36] Log opened at 2024-03-31 16:19:18.801831 +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:19:18.836607 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-03-31 16:19:18.843960 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:19:19.629332 + +[31] Log opened at 2024-03-31 16:19:19.639054 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:19:20.078849 + +[33] Log opened at 2024-03-31 16:19:20.088522 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [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. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:19:20.508315 + +[25] Log opened at 2024-03-31 16:19:20.517259 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[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. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:19:21.120862 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] Log opened at 2024-03-31 16:19:21.131690 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:19:21.531255 + +[32] Log opened at 2024-03-31 16:19:21.538944 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:19:21.990945 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:19:22.373345 + +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:19:22.822060 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:19:23.259381 + +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:19:23.721289 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:19:24.136783 + +[31] Log opened at 2024-03-31 16:19:24.176758 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-03-31 16:19:24.237790 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-03-31 16:19:24.243355 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:19:24.278605 +[25] Log opened at 2024-03-31 16:19:24.278754 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[32] [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. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:19:25.537317 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:19:25.675502 + +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:19:26.350759 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:19:26.938698 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:19:27.452784 + +[24] Log opened at 2024-03-31 16:19:34.158798 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] Log opened at 2024-03-31 16:19:34.257652 +[31] Log opened at 2024-03-31 16:19:34.257746 +[23] Log opened at 2024-03-31 16:19:34.257719 +[34] Log opened at 2024-03-31 16:19:34.257643 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[35] Log opened at 2024-03-31 16:19:34.257735 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [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. +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:19:35.624824 + +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:19:36.022762 + +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:19:36.492995 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:19:37.039817 + +[23] Log opened at 2024-03-31 16:19:37.131512 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[24] Log opened at 2024-03-31 16:19:37.131927 +[22] Log opened at 2024-03-31 16:19:37.131960 +[34] Log opened at 2024-03-31 16:19:37.132167 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [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. +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:19:37.588758 + +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-03-31 16:19:38.094500 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:19:38.536577 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:19:38.997128 + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:19:39.472079 + +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:19:39.993537 + +[24] Log opened at 2024-03-31 16:19:43.865254 +[22] Log opened at 2024-03-31 16:19:43.865263 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[34] Log opened at 2024-03-31 16:19:43.865863 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[24] [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. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:19:45.090553 + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:19:45.607207 + +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:19:46.170719 + +[24] Log opened at 2024-03-31 16:19:46.246001 +[36] Log opened at 2024-03-31 16:19:46.246017 +[22] Log opened at 2024-03-31 16:19:46.245997 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[34] Log opened at 2024-03-31 16:19:46.246651 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [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. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-03-31 16:19:47.454142 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:19:47.905934 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:19:48.435414 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] Log opened at 2024-03-31 16:19:58.265787 +[25] Log opened at 2024-03-31 16:19:58.265801 +[24] Log opened at 2024-03-31 16:19:58.265794 +[33] Log opened at 2024-03-31 16:19:58.266141 +[32] Log opened at 2024-03-31 16:19:58.266027 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[31] Log opened at 2024-03-31 16:19:58.267067 +[37] Log opened at 2024-03-31 16:19:58.267144 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[23] Log opened at 2024-03-31 16:19:58.269301 +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [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. +[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:19:58.458306 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-03-31 16:20:02.616317 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:03.068216 + +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:20:03.560665 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:20:04.018088 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:20:04.459414 + +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:20:04.925554 + +[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-03-31 16:20:05.518335 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:20:08.969190 + +[23] Log opened at 2024-03-31 16:20:09.072340 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 16:20:09.077141 +[25] Log opened at 2024-03-31 16:20:09.077073 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[41] Log opened at 2024-03-31 16:20:09.077318 +[36] Log opened at 2024-03-31 16:20:09.078853 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] Log opened at 2024-03-31 16:20:09.081500 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:20:09.930851 + +[23] Log opened at 2024-03-31 16:20:09.937824 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:20:10.270804 + +[36] Log opened at 2024-03-31 16:20:10.278007 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [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. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] Log closed at 2024-03-31 16:20:10.698122 + +[25] Log opened at 2024-03-31 16:20:10.706637 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:11.107300 + +[34] Log opened at 2024-03-31 16:20:11.115704 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-03-31 16:20:11.474861 + +[35] Log opened at 2024-03-31 16:20:11.483295 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:20:14.792928 + +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:20:15.207983 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [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. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:20:15.563670 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:15.953460 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:16.339830 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-03-31 16:20:16.717977 + +[35] Log opened at 2024-03-31 16:20:16.762468 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-03-31 16:20:16.803985 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] Log opened at 2024-03-31 16:20:16.809439 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] Log opened at 2024-03-31 16:20:16.841191 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[34] Log opened at 2024-03-31 16:20:16.841568 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:18.075522 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-03-31 16:20:18.092622 + +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:20:18.576891 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:20:19.027201 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:19.493227 + +[24] Log opened at 2024-03-31 16:20:20.795890 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[31] Log opened at 2024-03-31 16:20:20.795991 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:20:21.928875 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:20:21.930371 + +[31] Log opened at 2024-03-31 16:20:21.985588 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[24] Log opened at 2024-03-31 16:20:21.986198 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[31] [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. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [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. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [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. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:20:23.229035 + +[24] Log closed at 2024-03-31 16:20:23.229066 + +[25] Log opened at 2024-03-31 16:20:24.351059 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:29.232256 + +[25] Log opened at 2024-03-31 16:20:29.392660 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-03-31 16:20:29.395694 +[23] Log opened at 2024-03-31 16:20:29.395764 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[34] Log opened at 2024-03-31 16:20:29.395867 +[42] Log opened at 2024-03-31 16:20:29.396077 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[32] Log opened at 2024-03-31 16:20:29.396331 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:30.223850 + +[25] Log opened at 2024-03-31 16:20:30.231931 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:20:30.565630 + +[33] Log opened at 2024-03-31 16:20:30.576244 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:30.969196 + +[34] Log opened at 2024-03-31 16:20:30.979415 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:20:31.523088 + +[23] Log opened at 2024-03-31 16:20:31.531410 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:20:31.885509 + +[32] Log opened at 2024-03-31 16:20:31.896043 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [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. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-03-31 16:20:32.354939 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:32.742378 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:20:33.131353 + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:33.565367 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:20:34.027960 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:20:34.476748 + +[25] Log opened at 2024-03-31 16:20:34.528489 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 16:20:34.575049 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-03-31 16:20:34.578788 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-03-31 16:20:34.651571 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[23] Log opened at 2024-03-31 16:20:34.652489 +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [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. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:43.543503 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:20:43.937983 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:20:44.316374 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:20:44.857615 + +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-03-31 16:20:45.523229 + +[41] Log opened at 2024-03-31 16:20:54.775664 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-03-31 16:20:54.793307 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[24] Log opened at 2024-03-31 16:20:54.794282 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[31] Log opened at 2024-03-31 16:20:54.794966 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[36] [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. +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:20:54.811950 +[34] Log opened at 2024-03-31 16:20:54.811695 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:20:56.192515 + +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-03-31 16:20:56.693436 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:20:57.187488 + +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:20:57.776364 + +[36] Log opened at 2024-03-31 16:20:57.901861 +[41] Log opened at 2024-03-31 16:20:57.901866 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[24] Log opened at 2024-03-31 16:20:57.902319 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [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. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:20:58.394624 + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:20:58.930650 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:20:59.394977 + +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:20:59.867241 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:21:00.345111 + +[24] Log opened at 2024-03-31 16:21:04.913931 +[25] Log opened at 2024-03-31 16:21:04.913970 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[33] Log opened at 2024-03-31 16:21:04.913864 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[24] [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. +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-03-31 16:21:04.920763 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[23] Log opened at 2024-03-31 16:21:04.920497 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[43] Log opened at 2024-03-31 16:21:04.922934 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:21:06.214491 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:21:06.686071 + +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-03-31 16:21:07.215723 + +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-03-31 16:21:07.794733 + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:21:08.338693 + +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-03-31 16:21:08.953115 + +[24] Log opened at 2024-03-31 16:21:08.993465 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:21:10.622449 + +[32] Log opened at 2024-03-31 16:21:23.179139 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:21:28.252664 + +[34] Log opened at 2024-03-31 16:21:28.407366 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-03-31 16:21:28.412971 +[36] Log opened at 2024-03-31 16:21:28.412976 +[41] Log opened at 2024-03-31 16:21:28.412958 +[32] Log opened at 2024-03-31 16:21:28.412971 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[23] Log opened at 2024-03-31 16:21:28.414055 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:21:29.261702 + +[34] Log opened at 2024-03-31 16:21:29.271221 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:21:29.696449 + +[41] Log opened at 2024-03-31 16:21:29.706404 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-03-31 16:21:30.134081 + +[42] Log opened at 2024-03-31 16:21:30.145097 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:21:30.535495 + +[23] Log opened at 2024-03-31 16:21:30.545516 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:21:31.152467 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:21:31.163281 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:21:31.564944 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:21:31.970246 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:21:32.362512 + +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-03-31 16:21:32.833554 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:21:33.268512 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:21:33.691393 + +[42] Log opened at 2024-03-31 16:21:33.741286 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] Log opened at 2024-03-31 16:21:33.801233 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-03-31 16:21:33.825052 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 16:21:33.855611 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[36] Log opened at 2024-03-31 16:21:33.856723 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:21:35.223633 + +[42] Log closed at 2024-03-31 16:21:35.229673 + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:21:35.794175 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:21:36.342930 + +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:21:36.873499 + +[25] Log opened at 2024-03-31 16:22:21.092299 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:22:25.288567 + +[25] Log opened at 2024-03-31 16:22:25.419902 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-03-31 16:22:25.424474 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[24] Log opened at 2024-03-31 16:22:25.424849 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[43] [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. +[44] Log opened at 2024-03-31 16:22:25.428389 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:22:25.435666 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-03-31 16:22:25.450472 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:22:26.234026 + +[25] Log opened at 2024-03-31 16:22:26.241703 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:22:26.609520 + +[32] Log opened at 2024-03-31 16:22:26.618416 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-03-31 16:22:27.305888 + +[43] Log opened at 2024-03-31 16:22:27.315266 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [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. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:22:27.790323 + +[24] Log opened at 2024-03-31 16:22:27.800172 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-03-31 16:22:28.235477 + +[44] Log opened at 2024-03-31 16:22:28.242156 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:22:28.625662 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:22:28.982083 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:22:29.381964 + +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-03-31 16:22:29.801829 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:22:30.209105 + +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-03-31 16:22:30.598738 + +[23] Log opened at 2024-03-31 16:22:30.644505 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-03-31 16:22:30.693065 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] Log opened at 2024-03-31 16:22:30.701379 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-03-31 16:22:30.754946 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[24] Log opened at 2024-03-31 16:22:30.755777 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[43] [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. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:22:31.996568 + +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-03-31 16:22:32.063470 + +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-03-31 16:22:32.590193 + +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-03-31 16:22:33.080108 + +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-03-31 16:22:33.547165 + +[34] Log opened at 2024-03-31 16:23:39.837022 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:23:44.261288 + +[34] Log opened at 2024-03-31 16:23:44.397427 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-03-31 16:23:44.406130 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] Log opened at 2024-03-31 16:23:44.410130 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] Log opened at 2024-03-31 16:23:44.415702 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] Log opened at 2024-03-31 16:23:44.428047 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[23] Log opened at 2024-03-31 16:23:44.428312 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-03-31 16:23:45.221601 + +[34] Log opened at 2024-03-31 16:23:45.228776 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-03-31 16:23:45.695982 + +[45] Log opened at 2024-03-31 16:23:45.703120 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-03-31 16:23:46.137266 + +[23] Log opened at 2024-03-31 16:23:46.145776 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-03-31 16:23:46.802408 + +[36] Log opened at 2024-03-31 16:23:46.809377 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-03-31 16:23:47.204413 + +[41] Log opened at 2024-03-31 16:23:47.238807 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-03-31 16:23:47.601374 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 9 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 10 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:23:47.828533 + +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 9 +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 10 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:23:47.984266 + +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:23:48.222769 + +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 9 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 10 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:23:48.430875 + +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 9 +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 10 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 16:23:48.630985 + +[23] Log opened at 2024-03-31 16:23:48.824708 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] Log opened at 2024-03-31 16:23:48.828750 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[23] [Step Debug] -> + +[45] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[23] [Step Debug] -> + +[45] [Step Debug] <- run -i 9 +[23] [Step Debug] <- run -i 9 +[25] Log opened at 2024-03-31 16:23:48.864056 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 9 +[41] Log opened at 2024-03-31 16:23:48.923105 +[36] Log opened at 2024-03-31 16:23:48.923222 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[41] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[36] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[41] [Step Debug] -> + +[36] [Step Debug] -> + +[41] [Step Debug] <- run -i 9 +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 10 +[23] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:23:49.642986 + +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 10 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 16:23:49.743023 + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 10 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:23:50.053515 + +[45] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 10 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:23:50.363913 + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 10 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:23:50.680162 + +[23] Log opened at 2024-03-31 16:23:51.264683 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1051 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1054 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 11 -- JHBhcGVsLT5hbmNobw== +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 12 -- JHBhcGVsLT5hbHRv +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 13 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 14 -d 0 -c 0 -n "'gramaje" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 15 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 16 -d 0 -c 0 -n "'gramaje" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 17 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 18 -d 0 -c 0 -n "'paginas" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 19 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 20 -d 0 -c 0 -n "'negro" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 21 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 22 -d 0 -c 0 -n "'color" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 23 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 24 -d 0 -c 0 -n "$linea" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 25 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 26 -d 0 -c 0 -n "$linea->rotativa_cyan" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 27 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 28 -d 0 -c 0 -n "$linea->rotativa_cyan" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 29 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 30 -d 0 -c 0 -n "$linea->rotativa_magenta" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 31 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 33 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 34 -d 0 -c 0 -n "$linea->rotativa_amarillo" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 35 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 36 -d 0 -c 0 -n "$linea->rotativa_gota_negro" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 37 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 38 -d 0 -c 0 -n "$linea->rotativa_gota_color" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 39 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 40 -d 0 -c 0 -n "PresupuestoService::obtenerComparadorRotativa" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 41 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 42 -d 0 -c 0 -n "PresupuestoService::obtenerComparadorRotativa" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 43 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 44 -d 0 -c 0 -n "'total_impresion" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 45 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 46 -d 0 -c 0 -n "'total_impresion" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 47 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 48 -d 0 -c 0 -n "'fields" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 49 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 50 -d 0 -c 0 -n "'fields" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 51 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 52 -d 0 -c 0 -n "'fields" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 53 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 54 -d 0 -c 0 -n "'fields" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 55 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 56 -d 0 -c 0 -n "'fields" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 57 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 58 -d 0 -c 0 -n "campo" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 59 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 60 -d 0 -c 0 -n "campo" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 61 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 62 -d 0 -c 0 -n "campo" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 63 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 64 -d 0 -c 0 -n "el" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 65 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 66 -d 0 -c 0 -n "usando" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 67 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 68 -d 0 -c 0 -n "usando" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 69 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 70 -d 0 -c 0 -n "usando" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 71 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 72 -d 0 -c 0 -n "$comp_data" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 73 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 74 -d 0 -c 0 -n "ordena" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 75 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 76 -d 0 -c 0 -n "ordena" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 77 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 78 -d 0 -c 0 -n "se" +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 79 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 80 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 81 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 82 -d 0 -c 0 -n "$linea->rotativa_gota_color" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 83 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 84 -d 0 -c 0 -n "'total_impresion" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 85 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 86 -d 0 -c 0 -n "PresupuestoLineaModel" +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 87 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 88 -d 0 -c 0 -n "$nueva_linea" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 89 -d 230007 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 90 -d 230008 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 91 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1052 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 92 -d 230010 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 93 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 94 -d 230011 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 95 -d 230010 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 96 -d 230011 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 97 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 98 -d 230012 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 99 -d 230012 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 100 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 101 -d 230013 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 102 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 103 -d 230013 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 104 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 105 -d 230014 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 106 -d 230014 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 107 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 108 -d 0 -c 0 -n "->updatePreciosLineasPresupuesto" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 109 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_get -i 110 -d 230015 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 111 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 112 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:00.416638 + +[23] Log opened at 2024-03-31 16:25:00.569539 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[44] Log opened at 2024-03-31 16:25:00.598414 +[32] Log opened at 2024-03-31 16:25:00.598621 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-03-31 16:25:00.600502 +[43] Log opened at 2024-03-31 16:25:00.600745 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[46] Log opened at 2024-03-31 16:25:00.601784 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[43] [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. +[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[44] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[44] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[46] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[44] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[44] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[32] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[46] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[44] [Step Debug] -> + +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[46] [Step Debug] -> + +[43] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- run -i 8 +[44] [Step Debug] <- run -i 8 +[24] [Step Debug] <- run -i 8 +[43] [Step Debug] <- run -i 8 +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 8 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 9 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:00.925167 + +[23] Log opened at 2024-03-31 16:25:00.935148 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 9 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 16:25:01.429697 + +[43] Log opened at 2024-03-31 16:25:01.438689 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 8 +[44] [Step Debug] -> + +[44] [Step Debug] <- stop -i 9 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-31 16:25:01.899740 + +[44] Log opened at 2024-03-31 16:25:01.909986 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 8 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 9 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:02.138334 + +[24] Log opened at 2024-03-31 16:25:02.146651 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 8 +[32] [Step Debug] -> + +[32] [Step Debug] <- stop -i 9 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-31 16:25:02.373324 + +[32] Log opened at 2024-03-31 16:25:02.381713 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 8 +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 9 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 16:25:02.606919 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 9 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:02.754154 + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 9 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 16:25:02.932528 + +[44] [Step Debug] -> + +[44] [Step Debug] <- stop -i 9 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-31 16:25:03.157871 + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 9 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:03.346532 + +[32] [Step Debug] -> + +[32] [Step Debug] <- stop -i 9 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-31 16:25:03.528284 + +[23] Log opened at 2024-03-31 16:25:03.612175 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[46] Log opened at 2024-03-31 16:25:03.727724 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[46] [Step Debug] -> + +[43] Log opened at 2024-03-31 16:25:03.740460 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[46] [Step Debug] -> + +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[46] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[46] [Step Debug] <- run -i 8 +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 8 +[44] Log opened at 2024-03-31 16:25:03.824802 +[24] Log opened at 2024-03-31 16:25:03.824721 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- run -i 8 +[44] [Step Debug] <- run -i 8 +[44] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 9 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:04.478684 + +[44] [Step Debug] -> + +[44] [Step Debug] <- stop -i 9 +[44] [Step Debug] -> + +[44] Log closed at 2024-03-31 16:25:04.569308 + +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 9 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 16:25:04.917427 + +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 9 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 16:25:05.239072 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 9 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:05.573771 + +[23] Log opened at 2024-03-31 16:25:09.206304 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1055 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 10 -- JHBhcGVsLT5hbmNobw== +[23] [Step Debug] -> + +[23] [Step Debug] <- eval -i 11 -- JHBhcGVsLT5hbHRv +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 12 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 13 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 14 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 15 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:20.032788 + +[23] Log opened at 2024-03-31 16:25:20.168700 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[34] Log opened at 2024-03-31 16:25:20.176498 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] -> + +[45] Log opened at 2024-03-31 16:25:20.178923 +[41] Log opened at 2024-03-31 16:25:20.179056 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] Log opened at 2024-03-31 16:25:20.180306 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log opened at 2024-03-31 16:25:20.187448 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[34] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[23] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[41] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[23] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] -> + +[36] [Step Debug] -> + +[41] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[45] [Step Debug] -> + +[41] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[25] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[45] [Step Debug] -> + +[41] [Step Debug] -> + +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- run -i 7 +[41] [Step Debug] <- run -i 7 +[36] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:20.446676 + +[23] Log opened at 2024-03-31 16:25:20.458044 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:25:20.928946 + +[25] Log opened at 2024-03-31 16:25:20.941688 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:21.264968 + +[34] Log opened at 2024-03-31 16:25:21.275817 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:21.445490 + +[36] Log opened at 2024-03-31 16:25:21.455202 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:21.580110 + +[45] Log opened at 2024-03-31 16:25:21.590679 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 7 +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 16:25:21.760436 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:21.926719 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:25:22.082123 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:22.264793 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:22.447615 + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:22.654924 + +[23] Log opened at 2024-03-31 16:25:22.695197 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[25] Log opened at 2024-03-31 16:25:22.746217 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[36] Log opened at 2024-03-31 16:25:22.754960 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[45] Log opened at 2024-03-31 16:25:22.813517 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[34] Log opened at 2024-03-31 16:25:22.814296 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[34] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[34] [Step Debug] -> + +[45] [Step Debug] <- run -i 7 +[34] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:23.510970 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:23.531042 + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:23.909410 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:24.192437 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:25:24.404418 + +[23] Log opened at 2024-03-31 16:25:26.861017 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[25] Log opened at 2024-03-31 16:25:26.862682 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[23] [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. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[45] Log opened at 2024-03-31 16:25:26.879681 +[36] Log opened at 2024-03-31 16:25:26.879703 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[34] Log opened at 2024-03-31 16:25:26.880035 +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] -> + +[23] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] <- run -i 7 +[45] [Step Debug] -> + +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[34] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[34] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- run -i 7 +[45] [Step Debug] <- run -i 7 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:25:27.520040 + +[25] Log opened at 2024-03-31 16:25:27.594487 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[32] Log opened at 2024-03-31 16:25:27.595146 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[32] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[32] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[32] [Step Debug] <- run -i 7 +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:27.813345 + +[45] Log opened at 2024-03-31 16:25:27.825176 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:28.140025 + +[23] Log opened at 2024-03-31 16:25:28.216744 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:28.369091 + +[36] Log opened at 2024-03-31 16:25:28.377794 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:28.539973 + +[34] Log opened at 2024-03-31 16:25:28.548702 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[32] [Step Debug] -> + +[32] [Step Debug] <- stop -i 8 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-31 16:25:28.767079 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:25:29.002126 + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:29.180613 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:29.395675 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:29.613755 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:29.878050 + +[41] Log opened at 2024-03-31 16:25:36.060502 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[24] Log opened at 2024-03-31 16:25:36.060518 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[43] Log opened at 2024-03-31 16:25:36.060726 +[46] Log opened at 2024-03-31 16:25:36.060727 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[32] Log opened at 2024-03-31 16:25:36.061648 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[41] [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. +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] Log opened at 2024-03-31 16:25:36.066783 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[43] [Step Debug] -> + +[24] [Step Debug] -> + +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[41] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[43] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[32] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[46] [Step Debug] -> + +[24] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[32] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[32] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[46] [Step Debug] -> + +[24] [Step Debug] -> + +[43] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[32] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[25] [Step Debug] -> + +[32] [Step Debug] -> + +[43] [Step Debug] <- run -i 7 +[46] [Step Debug] <- run -i 7 +[41] [Step Debug] <- run -i 7 +[24] [Step Debug] <- run -i 7 +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[32] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[32] [Step Debug] -> + +[32] [Step Debug] <- stop -i 8 +[32] [Step Debug] -> + +[32] Log closed at 2024-03-31 16:25:36.701546 + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:36.908518 + +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 8 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 16:25:37.111516 + +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 16:25:37.412177 + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 8 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 16:25:37.627740 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:25:37.891519 + +[24] Log opened at 2024-03-31 16:25:38.354397 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:39.306130 + +[24] Log opened at 2024-03-31 16:25:41.333217 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:44.706564 + +[24] Log opened at 2024-03-31 16:25:44.750796 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[45] Log opened at 2024-03-31 16:25:44.803913 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[23] Log opened at 2024-03-31 16:25:44.804814 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 16:25:44.805786 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[36] Log opened at 2024-03-31 16:25:44.806179 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-03-31 16:25:44.807316 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[36] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[47] [Step Debug] -> + +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[47] [Step Debug] -> + +[23] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[47] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[36] [Step Debug] <- run -i 7 +[23] [Step Debug] <- run -i 7 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 7 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:45.041001 + +[24] Log opened at 2024-03-31 16:25:45.052515 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 7 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:45.434916 + +[23] Log opened at 2024-03-31 16:25:45.442367 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:45.976314 + +[45] Log opened at 2024-03-31 16:25:45.984065 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:46.215430 + +[36] Log opened at 2024-03-31 16:25:46.223394 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:46.432922 + +[34] Log opened at 2024-03-31 16:25:46.441858 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[47] [Step Debug] -> + +[47] [Step Debug] <- stop -i 8 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-31 16:25:46.673915 + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 8 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:25:46.824972 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:46.980089 + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:47.259419 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:47.532896 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:47.725475 + +[47] Log opened at 2024-03-31 16:25:47.752557 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 7 +[23] Log opened at 2024-03-31 16:25:47.808985 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[34] Log opened at 2024-03-31 16:25:47.817747 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[23] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[23] [Step Debug] -> + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[34] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[23] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[23] [Step Debug] <- run -i 7 +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[45] Log opened at 2024-03-31 16:25:47.865458 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[36] Log opened at 2024-03-31 16:25:47.865694 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] -> + +[36] [Step Debug] -> + +[45] [Step Debug] <- run -i 7 +[36] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:25:48.683835 + +[47] [Step Debug] -> + +[47] [Step Debug] <- stop -i 8 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-31 16:25:48.702020 + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 8 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:25:48.967447 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:25:49.266936 + +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 8 +[23] [Step Debug] -> + +[23] Log closed at 2024-03-31 16:25:49.573094 + +[46] Log opened at 2024-03-31 16:52:59.005513 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1112 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 8 +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 9 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 16:53:00.747609 + +[41] Log opened at 2024-03-31 16:53:00.860352 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1112 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 8 +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 9 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 16:53:01.791038 + +[43] Log opened at 2024-03-31 16:55:17.667431 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 8 +[43] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 9 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 16:55:19.172578 + +[25] Log opened at 2024-03-31 16:55:56.867224 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1118 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 8 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- stack_get -i 9 +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 10 -- JHBhcGVsLT5hbmNobw== +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 11 -- JHBhcGVsLT5hbHRv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 12 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 13 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 14 -d 250010 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 16 -d 250012 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 17 -d 250012 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 19 -d 250013 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 21 -d 250014 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 22 -d 250013 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 23 -d 250014 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 25 -d 250015 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 28 -d 250016 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 29 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] <- stack_get -i 31 +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 32 -- JHBhcGVsLT5hbmNobw== +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 33 -- JHBhcGVsLT5hbHRv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 34 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 36 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 37 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 38 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 39 -- JHBhcGVsLT5hbHRv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 40 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 42 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 43 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 44 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 45 -- JHBhcGVsLT5hbHRv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 46 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 48 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 49 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 50 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 51 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 52 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 54 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 55 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 56 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 57 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 58 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 59 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 61 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 62 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 63 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 64 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 65 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 66 -- JGxpbmVhLT50aXBv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 67 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 69 -d 0 -c 0 -p 0 -n "$comp_data[0]" +[25] [Step Debug] -> + +[25] [Step Debug] <- property_get -i 70 -d 0 -c 0 -p 0 -n "$comp_data[0][\"fields\"]" +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 71 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 72 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] <- stack_get -i 73 +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 74 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 75 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 76 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 77 -- JGxpbmVhLT50aXBv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 78 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 79 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 80 -d 250015 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 81 -d 250016 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 82 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 83 -d 250017 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 84 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 85 -d 250018 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 86 -d 250017 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 87 -d 250018 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 88 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 89 -d 250019 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 90 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 91 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 92 -d 250020 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 93 -d 250019 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 94 -d 250020 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 95 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 96 -d 250021 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 97 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 98 -d 250022 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 99 -d 250021 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 100 -d 250022 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 101 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 102 -d 250023 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 103 -d 250023 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 104 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 105 -d 250024 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 106 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 107 -d 250025 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 108 -d 250024 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_remove -i 109 -d 250025 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 110 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 111 -d 250026 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 112 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 113 -d 250027 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 114 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_get -i 115 -d 250028 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 116 +[25] [Step Debug] -> + +[25] [Step Debug] <- stack_get -i 117 +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 118 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 119 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 120 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[25] [Step Debug] -> + +[25] [Step Debug] <- eval -i 121 -- JGxpbmVhLT50aXBv +[25] [Step Debug] -> + +[25] [Step Debug] <- context_names -i 122 -d 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- context_get -i 123 -d 0 -c 0 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 124 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 125 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:57:57.352661 + +[25] Log opened at 2024-03-31 16:57:57.443807 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[36] Log opened at 2024-03-31 16:57:57.464426 +[24] Log opened at 2024-03-31 16:57:57.464519 +[47] Log opened at 2024-03-31 16:57:57.464900 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[36] [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. +[34] Log opened at 2024-03-31 16:57:57.467053 +[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] Log opened at 2024-03-31 16:57:57.467167 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] -> + +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[47] [Step Debug] -> + +[25] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[24] [Step Debug] -> + +[34] [Step Debug] -> + +[36] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[25] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[24] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[47] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[24] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[47] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[24] [Step Debug] -> + +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[47] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[25] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] <- run -i 10 +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[34] [Step Debug] -> + +[47] [Step Debug] -> + +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[24] [Step Debug] -> + +[45] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[47] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[36] [Step Debug] -> + +[24] [Step Debug] -> + +[45] [Step Debug] -> + +[34] [Step Debug] -> + +[47] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[47] [Step Debug] -> + +[36] [Step Debug] -> + +[45] [Step Debug] -> + +[24] [Step Debug] -> + +[34] [Step Debug] <- run -i 10 +[47] [Step Debug] <- run -i 10 +[45] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[36] [Step Debug] <- run -i 10 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 11 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:57:57.795690 + +[25] Log opened at 2024-03-31 16:57:57.807539 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 10 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 11 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:57:58.244074 + +[34] Log opened at 2024-03-31 16:57:58.253461 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 10 +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 11 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:57:58.695622 + +[24] Log opened at 2024-03-31 16:57:58.703791 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[47] [Step Debug] -> + +[47] [Step Debug] <- stop -i 11 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-31 16:57:58.932879 + +[47] Log opened at 2024-03-31 16:57:58.941662 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 10 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:57:59.185527 + +[36] Log opened at 2024-03-31 16:57:59.195123 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 10 +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 11 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:57:59.412503 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 11 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 16:57:59.615456 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 11 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:57:59.786071 + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 11 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:58:00.086114 + +[47] [Step Debug] -> + +[47] [Step Debug] <- stop -i 11 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-31 16:58:00.271350 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:58:00.466807 + +[34] Log opened at 2024-03-31 16:58:00.505695 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 10 +[45] Log opened at 2024-03-31 16:58:00.558533 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[47] Log opened at 2024-03-31 16:58:00.567021 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[45] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[45] [Step Debug] -> + +[47] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[45] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[47] [Step Debug] -> + +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[47] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[47] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[47] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[45] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[47] [Step Debug] -> + +[45] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[45] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[45] [Step Debug] <- run -i 10 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 10 +[36] Log opened at 2024-03-31 16:58:00.621056 +[24] Log opened at 2024-03-31 16:58:00.621181 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[36] [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. +[24] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[24] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[24] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[24] [Step Debug] -> + +[36] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[36] [Step Debug] -> + +[24] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[24] [Step Debug] -> + +[36] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 11 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 16:58:01.324033 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 16:58:01.357562 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 11 +[24] [Step Debug] -> + +[24] Log closed at 2024-03-31 16:58:01.671009 + +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- stop -i 11 +[47] [Step Debug] -> + +[47] Log closed at 2024-03-31 16:58:01.988015 + +[45] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- stop -i 11 +[45] [Step Debug] -> + +[45] Log closed at 2024-03-31 16:58:02.304878 + +[46] Log opened at 2024-03-31 17:00:27.099178 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 10 +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- stack_get -i 11 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 12 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 13 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 14 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 15 -- JGxpbmVhLT50aXBv +[46] [Step Debug] -> + +[46] [Step Debug] <- context_names -i 16 -d 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[46] [Step Debug] -> + +[41] Log opened at 2024-03-31 17:00:37.688595 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1116 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 10 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 11 +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 12 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 13 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 14 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 15 -- JGxpbmVhLT50aXBv +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 16 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 18 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 19 +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 20 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 21 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 22 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 23 -- JGxpbmVhLT50aXBv +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 24 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 26 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 27 +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 28 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 29 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 30 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[41] [Step Debug] -> + +[41] [Step Debug] <- eval -i 31 -- JGxpbmVhLT50aXBv +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 32 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_remove -i 18 -d 460008 +[41] [Step Debug] <- breakpoint_remove -i 34 -d 410011 +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_remove -i 35 -d 410012 +[46] [Step Debug] <- breakpoint_remove -i 19 -d 460009 +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_remove -i 36 -d 410013 +[46] [Step Debug] <- breakpoint_remove -i 20 -d 460010 +[41] [Step Debug] -> + +[46] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 37 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[46] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1117 +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_get -i 22 -d 460012 +[46] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_get -i 38 -d 410015 +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[41] [Step Debug] <- breakpoint_set -i 39 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_get -i 24 -d 460013 +[41] [Step Debug] <- breakpoint_get -i 40 -d 410016 +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_remove -i 25 -d 460012 +[41] [Step Debug] <- breakpoint_remove -i 41 -d 410015 +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_remove -i 26 -d 460013 +[41] [Step Debug] <- breakpoint_remove -i 42 -d 410016 +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 43 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[46] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1120 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_get -i 44 -d 410017 +[41] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_get -i 28 -d 460014 +[46] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_remove -i 45 -d 410017 +[46] [Step Debug] <- breakpoint_remove -i 29 -d 460014 +[41] [Step Debug] -> + +[46] [Step Debug] -> + +[41] [Step Debug] <- run -i 46 +[46] [Step Debug] <- eval -i 30 -- JGNvbXBfZGF0YVswXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 31 -- JGNvbXBfZGF0YVsxXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 32 -- JGNvbXBfZGF0YVsyXVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbidd +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 33 -- JGxpbmVhLT50aXBv +[46] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 47 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 17:01:09.144675 + +[41] Log opened at 2024-03-31 17:01:09.227864 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 7 +[43] Log opened at 2024-03-31 17:01:09.253675 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[25] Log opened at 2024-03-31 17:01:09.255879 +[48] Log opened at 2024-03-31 17:01:09.255712 +[36] Log opened at 2024-03-31 17:01:09.255856 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-03-31 17:01:09.257036 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[36] [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. +[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[25] [Step Debug] -> + +[36] [Step Debug] -> + +[43] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[48] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[36] [Step Debug] -> + +[48] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[48] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[34] [Step Debug] -> + +[36] [Step Debug] -> + +[48] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[36] [Step Debug] -> + +[34] [Step Debug] -> + +[43] [Step Debug] <- run -i 7 +[48] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[48] [Step Debug] <- run -i 7 +[34] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 17:01:09.524358 + +[41] Log opened at 2024-03-31 17:01:09.533909 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 7 +[46] [Step Debug] <- run -i 34 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 17:01:09.984694 + +[34] Log opened at 2024-03-31 17:01:09.996142 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 8 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 17:01:10.524011 + +[43] Log opened at 2024-03-31 17:01:10.533028 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 7 +[48] [Step Debug] -> + +[48] [Step Debug] <- stop -i 8 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-31 17:01:10.758984 + +[48] Log opened at 2024-03-31 17:01:10.768335 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:11.000816 + +[36] Log opened at 2024-03-31 17:01:11.013647 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 17:01:11.246211 + +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 17:01:11.387315 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 17:01:11.534622 + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 8 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 17:01:11.696209 + +[48] [Step Debug] -> + +[48] [Step Debug] <- stop -i 8 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-31 17:01:11.826109 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:11.951556 + +[36] Log opened at 2024-03-31 17:01:12.008622 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[34] Log opened at 2024-03-31 17:01:12.114896 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] Log opened at 2024-03-31 17:01:12.130513 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 7 +[43] Log opened at 2024-03-31 17:01:12.261866 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[25] Log opened at 2024-03-31 17:01:12.262219 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[43] [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. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[43] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[43] [Step Debug] <- run -i 7 +[25] [Step Debug] <- run -i 7 +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 35 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 17:01:12.610395 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:12.911313 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 17:01:13.039863 + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 8 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 17:01:13.430333 + +[48] [Step Debug] -> + +[48] [Step Debug] <- stop -i 8 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-31 17:01:13.839526 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 17:01:14.122342 + +[49] Log opened at 2024-03-31 17:01:21.078331 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 7 +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:22.345537 + +[49] Log opened at 2024-03-31 17:01:23.453526 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 7 +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:24.364022 + +[49] Log opened at 2024-03-31 17:01:26.990214 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[50] Log opened at 2024-03-31 17:01:26.990519 +[51] Log opened at 2024-03-31 17:01:26.990529 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[46] Log opened at 2024-03-31 17:01:26.990801 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[49] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[50] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[46] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[50] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[46] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[50] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[51] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[50] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[46] [Step Debug] -> + +[50] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[51] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[46] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[46] [Step Debug] <- run -i 7 +[49] [Step Debug] <- run -i 7 +[51] [Step Debug] <- run -i 7 +[50] [Step Debug] <- run -i 7 +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:27.668398 + +[49] Log opened at 2024-03-31 17:01:27.729100 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-03-31 17:01:27.730996 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[41] Log opened at 2024-03-31 17:01:27.731208 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[49] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[36] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[41] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] <- run -i 7 +[41] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[41] [Step Debug] <- run -i 7 +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 8 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 17:01:27.945979 + +[50] [Step Debug] -> + +[50] [Step Debug] <- stop -i 8 +[50] [Step Debug] -> + +[50] Log closed at 2024-03-31 17:01:28.228496 + +[51] [Step Debug] -> + +[51] [Step Debug] <- stop -i 8 +[51] [Step Debug] -> + +[51] Log closed at 2024-03-31 17:01:28.514976 + +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 17:01:28.724229 + +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:28.922414 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:29.208442 + +[50] Log opened at 2024-03-31 17:01:29.805379 +[41] Log opened at 2024-03-31 17:01:29.805416 +[46] Log opened at 2024-03-31 17:01:29.805437 +[49] Log opened at 2024-03-31 17:01:29.805437 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[51] Log opened at 2024-03-31 17:01:29.806004 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-03-31 17:01:29.811277 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[41] [Step Debug] -> + +[50] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[46] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[51] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[36] [Step Debug] -> + +[41] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[41] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[51] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[49] [Step Debug] -> + +[41] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[46] [Step Debug] -> + +[50] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[41] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[46] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[50] [Step Debug] -> + +[46] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[41] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[51] [Step Debug] -> + +[46] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[50] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[51] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[46] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[50] [Step Debug] -> + +[49] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[46] [Step Debug] -> + +[36] [Step Debug] -> + +[41] [Step Debug] -> + +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[46] [Step Debug] <- run -i 7 +[41] [Step Debug] <- run -i 7 +[49] [Step Debug] <- run -i 7 +[36] [Step Debug] <- run -i 7 +[51] [Step Debug] <- run -i 7 +[50] [Step Debug] <- run -i 7 +[51] [Step Debug] -> + +[51] [Step Debug] <- stop -i 8 +[51] [Step Debug] -> + +[51] Log closed at 2024-03-31 17:01:30.519573 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:30.775800 + +[36] Log opened at 2024-03-31 17:01:30.794371 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[41] [Step Debug] -> + +[41] [Step Debug] <- stop -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-03-31 17:01:30.970236 + +[50] [Step Debug] -> + +[50] [Step Debug] <- stop -i 8 +[50] [Step Debug] -> + +[50] Log closed at 2024-03-31 17:01:31.144816 + +[46] [Step Debug] -> + +[46] [Step Debug] <- stop -i 8 +[46] [Step Debug] -> + +[46] Log closed at 2024-03-31 17:01:31.335878 + +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:31.535596 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:31.806587 + +[49] Log opened at 2024-03-31 17:01:32.925643 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 7 +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:36.550549 + +[36] Log opened at 2024-03-31 17:01:36.623785 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] Log opened at 2024-03-31 17:01:36.630157 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[34] Log opened at 2024-03-31 17:01:36.630492 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[48] Log opened at 2024-03-31 17:01:36.631231 +[25] Log opened at 2024-03-31 17:01:36.631475 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-03-31 17:01:36.632543 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[48] [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. +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[48] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[43] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[36] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[48] [Step Debug] -> + +[34] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[48] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[43] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[49] [Step Debug] -> + +[25] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[48] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[25] [Step Debug] -> + +[49] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] -> + +[43] [Step Debug] -> + +[36] [Step Debug] -> + +[25] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[34] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] <- run -i 7 +[49] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] <- run -i 7 +[48] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[48] [Step Debug] <- run -i 7 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 7 +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:36.881723 + +[36] Log opened at 2024-03-31 17:01:36.890882 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[48] [Step Debug] -> + +[48] [Step Debug] <- stop -i 8 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-31 17:01:37.297349 + +[48] Log opened at 2024-03-31 17:01:37.307033 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 17:01:37.467863 + +[25] Log opened at 2024-03-31 17:01:37.477608 +[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] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:37.777271 + +[49] Log opened at 2024-03-31 17:01:37.787203 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 7 +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 17:01:37.932172 + +[34] Log opened at 2024-03-31 17:01:37.939160 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 8 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 17:01:38.102834 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:38.280082 + +[48] [Step Debug] -> + +[48] [Step Debug] <- stop -i 8 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-31 17:01:38.447672 + +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 17:01:38.622489 + +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:38.794704 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 17:01:38.958246 + +[43] Log opened at 2024-03-31 17:01:38.997506 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 7 +[48] Log opened at 2024-03-31 17:01:39.042888 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[48] [Step Debug] -> + +[25] Log opened at 2024-03-31 17:01:39.051390 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[48] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[48] [Step Debug] -> + +[25] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[48] [Step Debug] -> + +[25] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[48] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[25] [Step Debug] -> + +[48] [Step Debug] <- run -i 7 +[25] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[25] [Step Debug] -> + +[25] [Step Debug] <- run -i 7 +[36] Log opened at 2024-03-31 17:01:39.076829 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 7 +[34] Log opened at 2024-03-31 17:01:39.185280 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[49] Log opened at 2024-03-31 17:01:39.185626 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[34] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[34] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[34] [Step Debug] <- feature_set -i 1 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[34] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] <- feature_set -i 2 -n notify_ok -v 1 +[34] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[34] [Step Debug] <- feature_set -i 3 -n extended_properties -v 1 +[49] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[49] [Step Debug] <- feature_set -i 4 -n breakpoint_include_return_value -v 1 +[34] [Step Debug] -> + +[49] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[34] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[49] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Test.php -n 22 +[34] [Step Debug] -> + +[49] [Step Debug] -> + +[34] [Step Debug] <- run -i 7 +[49] [Step Debug] <- run -i 7 +[25] [Step Debug] -> + +[25] [Step Debug] <- stop -i 8 +[25] [Step Debug] -> + +[25] Log closed at 2024-03-31 17:01:39.880004 + +[43] [Step Debug] -> + +[43] [Step Debug] <- stop -i 8 +[43] [Step Debug] -> + +[43] Log closed at 2024-03-31 17:01:39.903076 + +[48] [Step Debug] -> + +[48] [Step Debug] <- stop -i 8 +[48] [Step Debug] -> + +[48] Log closed at 2024-03-31 17:01:40.150463 + +[34] [Step Debug] -> + +[34] [Step Debug] <- stop -i 8 +[34] [Step Debug] -> + +[34] Log closed at 2024-03-31 17:01:40.395847 + +[36] [Step Debug] -> + +[36] [Step Debug] <- stop -i 8 +[36] [Step Debug] -> + +[36] Log closed at 2024-03-31 17:01:40.660841 + +[49] [Step Debug] -> + +[49] [Step Debug] <- stop -i 8 +[49] [Step Debug] -> + +[49] Log closed at 2024-03-31 17:01:40.907298 +